Routing plans API

create new entry

POST /api/rest/admin/routing-plans

Parameters

Name Description
data[type] Resource type (routing-plans)
data[attributes][name] Name
data[attributes][rate-delta-max] Rate delta max
data[attributes][use-lnp] Use lnp
data[attributes][max-rerouting-attempts] Max rerouting attempts
data[relationships][sorting] Sorting

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE5MSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzAzOX0.OiQwNN725qNysH09z5Z5NWtpKpjwjV8kdBEc27x5uH8
Host: example.org
Cookie: 

Route

POST /api/rest/admin/routing-plans

Body

{"data":{"type":"routing-plans","attributes":{"name":"name"}}}

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/"52a82642dd007d26cb39898f44a5424e"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 94d555b5-9d22-4c2e-b781-8576bcbc06b4
X-Runtime: 0.015063
Content-Length: 349

Status

201 Created

Body

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