Delete Service Binding Map (v2.0)
DELETE/sdwan/v2.0/api/servicebindingmaps/:map_id
Delete a service binding map.
Request
Path Parameters
map_id stringrequired
The ID of the service binding map.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
description
The description of the service binding map. Max size = 256.
id string
The ID of the service binding map.
name stringrequired
The name of the service binding map. Max size = 128.
service_bindings ServiceBinding[]required
The service binding endpoint IDs and labels.
service_endpoint_ids string[]
The service endpoint IDs.
service_label_id string
The service label ID.
tags string[]
A information field that can be added to identify the service binding map. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"name": "string",
"service_bindings": [
{
"service_endpoint_ids": [
"string"
],
"service_label_id": "string"
}
],
"tags": [
"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": "INVALID_JSON"
}
]
}
}
Loading...