Query Prisma Access Configs (v2.0)
POST/v2.0/api/tenants/:tenant_id/prismaaccess_configs/query
Query the Prisma Access configurations.
Request
Path Parameters
ID of the tenant.
- application/json
Body
- Array [
- ]
The ID of the prisma access configs.
remote_networks RemoteNetwork[]
The details of the prisma access configuration remote networks.
The names of the remote networks.
The SPN (Security Processing Name) of the prisma access config.
The site ID of the prisma access configs.
Tenant Id: NotNull Digits(fraction = 0, integer = 20, TENANT_ID_INVALID_0001)
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
The count of the query list.
The deleted number of queries.
The deleted query IDs.
Description of the query. Max size = 256.
The ID.
Details of the next query.
The tenant ID.
Total number of queries.
items PrismaAccessConfigQueryResponse[]
The ID of the prisma access configs.
remote_networks RemoteNetwork[]
The details of the prisma access configuration remote networks.
The names of the remote networks.
The SPN (Security Processing Name) of the prisma access config.
The site ID of the prisma access configs.
Tenant Id: NotNull Digits(fraction = 0, integer = 20, TENANT_ID_INVALID_0001)
{
"count": 0,
"deleted_count": 0,
"deleted_ids": [
"string"
],
"id": "string",
"next_query": {},
"tenant_id": "string",
"total_count": 0,
"items": [
{
"id": "string",
"remote_networks": [
{
"remote_network_names": [
"string"
],
"spn_name": "string"
}
],
"site_id": "string",
"tenant_id": "string"
}
]
}