Create IPFIX Global Prefix (v2.0)
POST/sdwan/v2.0/api/ipfixglobalprefixes
Create a IPFIX global prefix.
Request
- application/json
Body
The description of the IPFIX global prefix. Max characters = 256.
The ID of the IPFIX global prefix.
The individual IP address or IP address subnets.
The name of the IPFIX global prefix. Max characters = 128.
A information field that can be added to identify the IPFIX global prefix. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
The description of the IPFIX global prefix. Max characters = 256.
The ID of the IPFIX global prefix.
The individual IP address or IP address subnets.
The name of the IPFIX global prefix. Max characters = 128.
A information field that can be added to identify the IPFIX global prefix. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"ipv4_prefixes": [
"string"
],
"name": "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_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "INVALID_REQUEST_DUPLICATE_KEY"
},
{
"code": "NAME_REQD"
},
{
"code": "DESCRIPTION_EXCEEDS_LIMIT"
},
{
"code": "INVALID_TAG"
},
{
"code": "INVALID_PREFIX"
}
]
}
}