Create Prisma Access Config with Remote Networks (v2.0)
POST/v2.0/api/tenants/:tenant_id/sites/:site_id/prismaaccess_configs
Create a Prisma Access configuration with remote networks and the security processing node.
Request
Path Parameters
ID of the tenant.
The ID of the site.
- 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
- 400
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- 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)
{
"id": "string",
"remote_networks": [
{
"remote_network_names": [
"string"
],
"spn_name": "string"
}
],
"site_id": "string",
"tenant_id": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "SITE_NOT_FOUND"
},
{
"code": "DEM_PA_CONFIG_EXISTS"
}
]
}
}