Routing plans API

update values

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

Parameters

Name Description
data[type] Resource type (routing-plans)
data[id] Routing plan ID
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

Request

Headers

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

Route

PUT /api/rest/admin/routing-plans/11

Body

{"data":{"type":"routing-plans","id":11,"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/"c27f346f81fde09ab647e7be5a66bf28"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 147d5250-4799-404d-abb9-757e2d3bce54
X-Runtime: 0.020241
Content-Length: 348

Status

200 OK

Body

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