Delete an Inbound Route
Delete an inbound route, multiple inbound routes, or all inbound routes.
Endpoint
POST /api/v0.0.1/inroute/delete?token={token}&type={type}
Request Parameters
Name | Importance | Type | Description |
name | Required | String | Inbound Route name.
Example: “name”:”route1″
Example: “name”: “route1,route2”
|
Examples
Request Example
POST /api/v0.0.1/inroute/delete?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
“name”:”test2″
}
POST /api/v0.0.1/inroute/delete?token=813b621cfe8eecf445a2ce1f4a079ffe&type=xml HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
<?xml version=”1.0″ encoding=”UTF-8″ ?>
<xml>
<name>test2</name>
</xml>
Response Example
HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
<?xml version=”1.0″ encoding=”utf-8″?>
<xml>
<status>Success</status>
</xml>