Get SD-WAN Application Configurations (v2.0)
GET/sdwan/v2.0/api/sdwanapps/:app_id/configs
List all the SD-WAN application configurations.
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 actual count.
id string
The ID.
items SDWANAppConfig[]
id string
The SD-WAN app ID.
state stringrequired
Possible values: [ENABLED
, DISABLED
, PAUSED
]
The SD-WAN app configuration state.
user_config object
The user configuration of the SD-WAN app.
version string
The SD-WAN app version.
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"state": "ENABLED",
"user_config": {},
"version": "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": "SDWAN_APP_INVALID_APP_CONFIG_STATE"
}
]
}
}
Loading...