Routing plans API

get specific entry

GET /api/rest/admin/routing-plans/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIxNCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc4NjM2MDI5N30.M3bY10AqNbUyR7oYf1bMX2J1o-apu4Ep6zayP0SoR5I
Host: example.org
Cookie: 

Route

GET /api/rest/admin/routing-plans/15

Response

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/vnd.api+json
vary: Accept
etag: W/"414dff42fb946386ec7f0f6da96db60a"
cache-control: max-age=0, private, must-revalidate
x-request-id: 9a972db3-68b0-42c3-8946-b1400a7515bd
x-runtime: 0.004875
content-length: 464

Status

200 OK

Body

{
  "data": {
    "id": "15",
    "type": "routing-plans",
    "links": {
      "self": "http://example.org/api/rest/admin/routing-plans/15"
    },
    "attributes": {
      "name": "routing_plan_15",
      "rate-delta-max": "0.0",
      "use-lnp": false,
      "max-rerouting-attempts": 9,
      "sorting-id": 1
    },
    "relationships": {
      "routing-groups": {
        "links": {
          "related": "http://example.org/api/rest/admin/routing-plans/15/routing-groups"
        }
      },
      "static-routes": {
        "links": {
          "related": "http://example.org/api/rest/admin/routing-plans/15/static-routes"
        }
      }
    }
  }
}