dynamic_route

dynamic_route

Configuration for API to get/add/delete the dynamic route resource.

Read/write properties

cost <Integer>

Cost of the Route. Minimum value = 1 Maximum value = 16

routeip <String>

Route IP Address.

subnet <Integer>

Route IP Subnet Information. Minimum value = 1 Maximum value = 32

Read only properties

Operations

add delete get (all) modify

[add]{}

URL: http://<MGMT-IP>/sdwan/nitro/v1/config/dynamic_route

Description: Use this operation to add dynamic route IP Information and cost of the routes

HTTP Method: POST

Request Payload: JSON

{"dynamic_route": { "cost":<Integer_value> , "routeip":<String_value> , "subnet":<Integer_value> }}

Response Payload: JSON

{ "dynamic_route":{ "cost":<Integer_value>

, "routeip":<String_value> , "subnet":<Integer_value> }]}

[delete]{}

URL: http://<MGMT-IP>/sdwan/nitro/v1/config/dynamic_route/subnet=<Integer>,routeip=<String>

Description: Use this operation to delete dynamic route IP Information and cost of the routes

HTTP Method: DELETE

Response Payload: JSON

{ "errorcode": 0, "message": "Done", "severity": <String;_value> }

[get (all)]{}

URL: http://<MGMT-IP>/sdwan/nitro/v1/config/dynamic_route

Description: Use this operation to get dynamic route IP Information and cost of the routes

HTTP Method: GET

Response Payload: JSON

{"dynamic_route":[{ "cost":<Integer_value>

, "routeip":<String_value> , "subnet":<Integer_value> }]}

[modify]{}

URL: http://<MGMT-IP>/sdwan/nitro/v1/config/dynamic_route

Description: Use this operation to modify dynamic route IP Information and cost of the routes

HTTP Method: PUT

Request Payload: JSON

{"dynamic_route":{ "cost":<Integer_value> , "routeip":<String_value> , "subnet":<Integer_value> }}

Response Payload: JSON

{ "dynamic_route":[{ "cost":<Integer_value>

, "routeip":<String_value> , "subnet":<Integer_value> }]}

Was this article helpful?