Create Service Binding Map (v2.1)
POST/sdwan/v2.1/api/servicebindingmaps
Create a new service binding map.
Request
- application/json
Body
Details of the service binding maps to be created
- Array [
- ]
The description of the service binding map. Max size = 256.
The ID of the service binding map.
The default map.
The name of the service binding map. Max size = 128.
service_bindings ServiceBinding[]required
The service binding endpoint IDs and labels.
The service endpoint IDs.
The service label ID.
A information field that can be added to identify the service binding map. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The description of the service binding map. Max size = 256.
The ID of the service binding map.
The default map.
The name of the service binding map. Max size = 128.
service_bindings ServiceBinding[]required
The service binding endpoint IDs and labels.
The service endpoint IDs.
The service label ID.
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",
"is_default": true,
"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[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON"
},
{
"code": "SERVICEBINDINGMAP_CONFIG_INVALID_SERVICEENDPOINT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "SERVICEBINDINGMAP_CONFIG_INVALID_SERVICELABEL"
},
{
"code": "SERVICEBINDINGMAP_CONFIG_SASELABEL_TOO_MANY_SERVICEENDPOINTS"
}
]
}
}