Delete an Inbound Route

Delete an inbound route, multiple inbound routes, or all inbound routes.

Endpoint

POST /api/v1.1.0/inroute/delete?token={token}

Request Parameters

Name Importance Type Description
name Required String Inbound Route name.
  • An inbound route: Set name to the inbound route name.

    Example: "name":"route1"

  • Multiple inbound routes: Set name to the inbound route name. Separate multiple inbound routes with ,.

    Example: "name": "route1,route2"

  • All inbound routes: Set name to all.

Examples

Request Example

POST /api/v1.1.0/inroute/delete?token=1e3b3ebb6a974cb42ed31de5413df52d HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150
{
    "name": "route1,route2"
}

Response Example

HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
    "status": "Success"
}