Query ADEM Status
POST/v2.0/api/tenants/:tenant_id/demstatus/query
Query the status of your ADEM instance.
Request
Path Parameters
tenant_id stringrequired
The unique tenant ID.
- application/json
Body
dem_enabled boolean
Indicates whether ADEM is enabled for your instance.
id string
ID of the DEM status.
site_id stringrequired
ID of the remote site. More details on the site can be retrieved by querying the sites API.
tenant_id stringrequired
The tenant ID.
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- 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 DemStatusQueryResponse[]
dem_enabled boolean
Indicates whether ADEM is enabled for your instance.
id string
ID of the DEM status.
site_id stringrequired
ID of the remote site. More details on the site can be retrieved by querying the sites API.
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": [
{
"dem_enabled": true,
"id": "string",
"site_id": "string",
"tenant_id": "string"
}
]
}
Loading...