Subordination rules (subordinations)
Requests
HTTP verb | Endpoint | Description |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Creating a new chain of command rule
Request
Field Description: subordination entity
POST /rest/v1/domain/subordinations HTTP/1.1
Content-Type: application/json; charset=utf-8
subordination entity
Response
Field Description: subordination entity
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"id": "afafafaf-0178-3fc1-67fc-7cd30a921f58",
"top_type": "user",
"top_key": "00000001-abcd-abcd-abcd-abcdabcdabcd",
"sub_type": "user",
"sub_keys": [
"00000002-abcd-abcd-abcd-abcdabcdabcd",
"00000003-abcd-abcd-abcd-abcdabcdabcd"
],
"opts": {
"comment": "",
"title": ""
},
"ext": {
"ct": "2022-10-20T13:37:03.82Z",
"lwt": "2022-10-20T13:41:42.25Z"
}
}
Getting the list of subordination rules
Request
Name | Type | Description |
---|---|---|
|
|
Filter by field values. |
|
|
List of fields to output. Available fields for output: id, top_type, top_key, sub_type, sub_keys, opts.title, opts.comment, ext.lwt, ext.ct. |
|
|
Offset in the list of resources to be issued. |
|
|
The maximum number of resources in the list. |
|
|
The sort order of the resources in the list. |
|
|
Conversion to flat form of composite fields. |
GET /rest/v1/domain/subordinations?offset=0&limit=2 HTTP/1.1
Response
Field Description: subordination entity
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
[
{
"id": "afafafaf-0178-3fc1-67fc-7cd30a921f58",
"top_type": "user",
"top_key": "00000001-abcd-abcd-abcd-abcdabcdabcd",
"sub_type": "user",
"sub_keys": [
"00000002-abcd-abcd-abcd-abcdabcdabcd",
"00000003-abcd-abcd-abcd-abcdabcdabcd"
],
"opts": {
"comment": "",
"title": ""
},
"ext": {
"ct": "2022-10-20T13:37:03.82Z",
"lwt": "2022-10-20T13:41:42.25Z"
}
},
{
"id": "abcdef00-05b7-8163-948c-3392a9660db9",
"top_type": "role",
"top_key": "callcenter_supervisor",
"sub_type": "group",
"sub_keys": [
"315f0002-1234-abcd-abcd-abcdabcdabcd",
"6e003b59-2345-abcd-abcd-abcdabcdabcd"
],
"opts": {
"comment": "",
"title": ""
},
"ext": {
"ct": "2022-10-20T12:22:25.26Z",
"lwt": "2022-10-20T12:22:25.26Z"
}
}
]
Obtaining subordination rule data
Request
Name | Type | Description |
---|---|---|
|
|
A list of fields to output. |
|
|
Conversion to flat form of composite fields. |
GET /rest/v1/domain/groups/afafafaf-0178-3fc1-67fc-7cd30a921f58 HTTP/1.1
Response
Field Description: subordination entity
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"id": "afafafaf-0178-3fc1-67fc-7cd30a921f58",
"top_type": "user",
"top_key": "00000001-abcd-abcd-abcd-abcdabcdabcd",
"sub_type": "user",
"sub_keys": [
"00000002-abcd-abcd-abcd-abcdabcdabcd",
"00000003-abcd-abcd-abcd-abcdabcdabcd"
],
"opts": {
"comment": "",
"title": ""
},
"ext": {
"ct": "2022-10-20T13:37:03.82Z",
"lwt": "2022-10-20T13:41:42.25Z"
}
}
Modification of subordination rule data
Fields prohibited for modification: id
Request
Field Description: subordination entity
PATCH /rest/v1/domain/groups/afafafaf-0178-3fc1-67fc-7cd30a921f58 HTTP/1.1
Content-Type: application/json; charset=utf-8
subordination entity
Response
Field Description: subordination entity
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"id": "afafafaf-0178-3fc1-67fc-7cd30a921f58",
"top_type": "role",
"top_key": "admin",
"sub_type": "user",
"sub_keys": [
"00000002-abcd-abcd-abcd-abcdabcdabcd",
"00000003-abcd-abcd-abcd-abcdabcdabcd"
],
"opts": {
"comment": "",
"title": ""
},
"ext": {
"ct": "2022-10-20T13:37:03.82Z",
"lwt": "2022-10-20T13:41:42.25Z"
}
}
Deleting a chain of command rule
Searching for a subordination rule identifier
Searches the resource for the specified key, returns the identifier(s) to build the endpoint.
Key fields to search for: id
Request
LOOKUP /rest/v1/domain/subordinations HTTP/1.1
Content-Type: application/json; charset=utf-8
"afafafaf-0178-3fc1-67fc-7cd30a921f58"
Response
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
[
"afafafaf-0178-3fc1-67fc-7cd30a921f58"
]
HTTP/1.1 404 Not Found
Content-Type: application/json; charset=utf-8
{
"error_code": 1404,
"error_message": "Lookup failed"
}