Get ADEM Status for Site (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/demstatus/:dem_status_id
Get DEM status for a site in Prisma SD-WAN.
Request
Path Parameters
tenant_id stringrequired
Your SD-WAN instance's unique tenant ID.
site_id stringrequired
The ADEM enabled site IDs.
dem_status_id stringrequired
The status ID of the ADEM enabled site.
Responses
- 200
- 400
- 404
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
dem_enabled boolean
Indicates whether ADEM is enabled for your instance.
id string
ID of the ADEM instances.
site_id stringrequired
ID of the remote site.
tenant_id stringrequired
The tenant ID.
{
"dem_enabled": true,
"id": "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"
}
]
}
}
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...