Routing groups API

update values

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

Parameters

Name Description
data[type] Resource type (routing-groups)
data[id] Routing group ID
data[attributes][name] Name

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE4NywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzAzOX0.kZBDEG27njkuUcdiWDpCHmev-cx5myfNn-IFB1x5HYU
Host: example.org
Cookie: 

Route

PUT /api/rest/admin/routing-groups/37

Body

{"data":{"type":"routing-groups","id":37,"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/"355fff65b13ac7247d7158354732ed9f"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 6092449c-5c52-40e3-8c5e-939c8e2c5ab3
X-Runtime: 0.019316
Content-Length: 268

Status

200 OK

Body

{
  "data": {
    "id": "37",
    "type": "routing-groups",
    "links": {
      "self": "http://example.org/api/rest/admin/routing-groups/37"
    },
    "attributes": {
      "name": "name"
    },
    "relationships": {
      "routing-plans": {
        "links": {
          "related": "http://example.org/api/rest/admin/routing-groups/37/routing-plans"
        }
      }
    }
  }
}