Create Syslog Server Profile (v2.0)
POST/sdwan/v2.0/api/syslogserverprofiles
Create a syslog server profile.
Request
- application/json
Body
Details of the Syslog Server Profile
The description of the syslog server. Max characters = 1024.
Enables export flow logs to the Syslog server.
The ID of the Syslog server.
The Syslog server name. Max characters = 128.
The protocol type (TCP, or UDP, or TLS). The default protocol is UDP.
The standard VPN endpoint CA certificate uploaded for certificate authentication.
The Syslog server FQDN domain name.
The Syslog server IP address.
The Syslog server port number. The default port is 514 for TCP or UDP and 6514 for TLS.
The Severity Level from a severity level of critical, major, or minor.
A information field that can be added to identify the event multicast RP config. 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 syslog server. Max characters = 1024.
Enables export flow logs to the Syslog server.
The ID of the Syslog server.
The Syslog server name. Max characters = 128.
The protocol type (TCP, or UDP, or TLS). The default protocol is UDP.
The standard VPN endpoint CA certificate uploaded for certificate authentication.
The Syslog server FQDN domain name.
The Syslog server IP address.
The Syslog server port number. The default port is 514 for TCP or UDP and 6514 for TLS.
The Severity Level from a severity level of critical, major, or minor.
A information field that can be added to identify the event multicast RP config. Maximum 10 unique tags of length 1024 each are allowed.
{
"enable_flow_logging": true,
"id": "string",
"name": "string",
"protocol": "string",
"remote_ca_certificate": "string",
"server_fqdn": "string",
"server_ip": "string",
"server_port": 0,
"severity_level": "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_EXTRA_ATTRIBUTE"
},
{
"code": "SYSLOGSERVER_PROFILE_IP_OR_FQDN_REQUIRED"
},
{
"code": "SYSLOGSERVER_PROFILE_INVALID_PORT_RANGE"
},
{
"code": "SYSLOGSERVER_PROFILE_INVALID_PROTOCOL"
},
{
"code": "SYSLOGSERVER_PROFILE_INVALID_SEVERITY_LEVEL"
}
]
}
}