Create Prisma Access Config with Remote Networks (v2.0)
POST/sdwan/v2.0/api/sites/:site_id/prismaaccess_configs
Create a Prisma Access configuration with remote networks and the security processing node.
Request
Path Parameters
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.
Edge Location Display: JsonIgnore(value = true)
Edge Location Value: JsonIgnore(value = true)
The names of the remote networks.
Service Link Ids: JsonIgnore(value = true)
The SPN (Security Processing Name) of the prisma access config.
The site ID of the prisma access configs.
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.
Edge Location Display: JsonIgnore(value = true)
Edge Location Value: JsonIgnore(value = true)
The names of the remote networks.
Service Link Ids: JsonIgnore(value = true)
The SPN (Security Processing Name) of the prisma access config.
The site ID of the prisma access configs.
{
"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"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_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"
}
]
}
}