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.eyJzdWIiOjIwMywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc3MjIxMjAwOX0.p5uOOdnUl1NGCTELmPIlQPgRMvhRjWurR6Cztt8Gisc
Host: example.org
Cookie: 

Route

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

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/"43226ba8b859281ca5129cb971c55164"
cache-control: max-age=0, private, must-revalidate
x-request-id: ed713716-2ed3-4c3e-b991-db7725d9c545
x-runtime: 0.005781
content-length: 355

Status

200 OK

Body

{
  "data": {
    "id": "9",
    "type": "routing-plans",
    "links": {
      "self": "http://example.org/api/rest/admin/routing-plans/9"
    },
    "attributes": {
      "name": "routing_plan_9",
      "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/9/routing-groups"
        }
      }
    }
  }
}