Get Tenant SD-WAN Application Status (v2.0)
GET/sdwan/v2.0/api/sdwanapps/:app_id/status
List an existing tenant SD-WAN application status.
Request
Path Parameters
app_id stringrequired
The SD-WAN tenant's app ID.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The total number.
id string
The ID.
items SDWANAppStatus[]
details string
The details of the SD-WAN app status.
id string
The SD-WAN app ID.
message stringrequired
The SD-WAN application status message.
severity stringrequired
Possible values: [INFO
, ERROR
, WARNING
, FATAL
]
The SD-WAN application status severity.
timestamp int64required
The SD-WAN application status time stamp.
{
"count": 0,
"id": "string",
"items": [
{
"details": "string",
"id": "string",
"message": "string",
"severity": "INFO",
"timestamp": 0
}
]
}
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": "SDWAN_APP_STATUS_MESSAGE_REQUIRED"
},
{
"code": "SDWAN_APP_STATUS_TIMESTAMP_REQUIRED"
},
{
"code": "SDWAN_APP_STATUS_INVALID_SEVERITY"
}
]
}
}
Loading...