Get Prisma Access Configs for a Site (v2.0)
List the Prisma Access configurations for a site.
Path Parameters
- site_id string required
The ID of the site.
- config_id string required
The ID of the prisma access config.
Responses
- 200
- 400
- 404
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- id string
The ID of the prisma access configs.
remote_networks RemoteNetwork[]
The details of the prisma access configuration remote networks.
Array [remote_network_names string[]The names of the remote networks.
spn_name string requiredThe SPN (Security Processing Name) of the prisma access config.
]- site_id string required
The site ID of the prisma access configs.
{
"id": "string",
"remote_networks": [
{
"remote_network_names": [
"string"
],
"spn_name": "string"
}
],
"site_id": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
_error ErrorResponse[]
Array [code stringmessage string]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_NOT_FOUND"
}
]
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
_error ErrorResponse[]
Array [code stringmessage string]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
Loading...