Get Prisma Access Configs for a Site (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/prismaaccess_configs
List all all Prisma Access configurations for a site.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
site_id stringrequired
The ID of the site.
Responses
- 200
- 400
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count int32
The actual count.
deleted_count int64
The deleted number.
deleted_ids string[]
The deleted IDs.
description
Description of the query. Max size = 256.
id string
The ID.
next_query object
Details of the next query.
tenant_id string
The tenant ID.
total_count int64
Total number.
items PrismaAccessConfig[]
id string
The ID of the prisma access configs.
remote_networks RemoteNetwork[]
The details of the prisma access configuration remote networks.
edge_location_display string
Edge Location Display: JsonIgnore(value = true)
edge_location_value string
Edge Location Value: JsonIgnore(value = true)
remote_network_names string[]
The names of the remote networks.
service_link_ids string[]
Service Link Ids: JsonIgnore(value = true)
spn_name stringrequired
The SPN (Security Processing Name) of the prisma access config.
site_id stringrequired
The site ID of the prisma access configs.
tenant_id stringrequired
The tenant ID.
{
"count": 0,
"deleted_count": 0,
"deleted_ids": [
"string"
],
"id": "string",
"next_query": {},
"tenant_id": "string",
"total_count": 0,
"items": [
{
"id": "string",
"remote_networks": [
{
"edge_location_display": "string",
"edge_location_value": "string",
"remote_network_names": [
"string"
],
"service_link_ids": [
"string"
],
"spn_name": "string"
}
],
"site_id": "string",
"tenant_id": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_NOT_FOUND"
}
]
}
}
Loading...