Role
- 16 Jun 2022
- 2 Minutes to read
- Print
- DarkLight
Role
- Updated on 16 Jun 2022
- 2 Minutes to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Role
You need the Manage Agent & Agent Roles permission to manage roles.
Roles
- Roles ManageGET global/roles
- Get the list of RolesGET global/roles/{id}
- Get a single RolePOST global/roles
- Create a new RolePUT global/roles/{id}
- Update the RoleDELETE global/roles/{id}
- Remove the Role
Role JSON Format
Role is represented as simple flat JSON objects with the following keys:
Name | Type | Description |
---|---|---|
id | guid | Id of the role. |
name | string | Name of the role. |
description | string | Description of the role. |
type | string | "Administrators" and "AllAgents" are the system role types. They cannot be deleted.Allowed values are "Administrators", "AllAgents", "Custom". |
agentIds | array | The selected agents for this role.If not offered, will use role identifier of "AllAgents" as default. |
permissionIds | array | Permissions assigned to this role. |
Get the list of Roles
GET global/roles
Parameters:
Name | Type | in | Required | Description |
---|---|---|---|---|
include | string | query | no | Allowed values are "agent", "permission". |
Response:
An array of Role
Example
Sample Request:
curl https://api11.comm100.io/v4/global/roles \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \
Response:
HTTP/1.1 200 OK
[
{
"id": "c8448a05-ede0-4adc-bb43-6b1ee3977b9c",
"name": "Pre-sale",
"description": "Pre-sale role",
"type": "Custom",
"agentIds": [
"3FA2EF45-7D46-EB11-8100-00155D081D0B"
],
"permissionIds": [
"4,5"
]
}
]
Get a single Role
GET global/roles/{id}
Parameters:
Name | Type | in | Required | Description |
---|---|---|---|---|
include | string | query | no | Allowed values are "agent", "permission". |
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/roles/c8448a05-ede0-4adc-bb43-6b1ee3977b9c \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \
Response:
HTTP/1.1 200 OK
{
"id": "c8448a05-ede0-4adc-bb43-6b1ee3977b9c",
"name": "Pre-sale",
"description": "Pre-sale role",
"type": "Custom",
"agentIds": [
"3FA2EF45-7D46-EB11-8100-00155D081D0B"
],
"permissionIds": [
"4,5"
]
}
Create a new Role
POST global/roles
Parameters:
Name | Type | in | Required | Description |
---|---|---|---|---|
name | string | body | yes | Name of the role. |
description | string | body | no | Description of the role. |
type | string | body | no | "Administrators" and "AllAgents" are the system role types. They cannot be deleted.Allowed values are "Administrators", "AllAgents", "Custom". |
agentIds | array | body | no | The selected agents for this role.If not offered, will use role identifier of "AllAgents" as default. |
permissionIds | array | body | no | Permissions assigned to this role. |
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/roles \
-X 'POST' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
-D '{"name":"Pre-sale","description":"Pre-sale role","type":"Custom"}'
Response:
HTTP/1.1 201 Created
{
"id": "c8448a05-ede0-4adc-bb43-6b1ee3977b9c",
"name": "Pre-sale",
"description": "Pre-sale role",
"type": "Custom",
"agentIds": [
"3FA2EF45-7D46-EB11-8100-00155D081D0B"
],
"permissionIds": [
"4,5"
]
}
Update the Role
PUT global/roles/{id}
Parameters:
Name | Type | in | Required | Description |
---|---|---|---|---|
name | string | body | yes | Name of the role. |
description | string | body | no | Description of the role. |
type | string | body | no | "Administrators" and "AllAgents" are the system role types. They cannot be deleted.Allowed values are "Administrators", "AllAgents", "Custom". |
agentIds | array | body | no | The selected agents for this role.If not offered, will use role identifier of "AllAgents" as default. |
permissionIds | array | body | no | Permissions assigned to this role. |
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/roles/c8448a05-ede0-4adc-bb43-6b1ee3977b9c \
-X 'PUT' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
-D '{"name":"Pre-sale","description":"Pre-sale role","type":"Custom"}'
Response:
HTTP/1.1 200 OK
{
"id": "c8448a05-ede0-4adc-bb43-6b1ee3977b9c",
"name": "Pre-sale",
"description": "Pre-sale role",
"type": "Custom",
"agentIds": [
"3FA2EF45-7D46-EB11-8100-00155D081D0B"
],
"permissionIds": [
"4,5"
]
}
Remove the Role
DELETE global/roles/{id}
Parameters:
No Parameters
Response:
No Content
Example
Sample Request:
curl https://api11.comm100.io/v4/global/roles/c8448a05-ede0-4adc-bb43-6b1ee3977b9c \
-X 'DELETE' \
-H 'Authorization: Bearer {access_token}' \
Response:
HTTP/1.1 204 No Content
Was this article helpful?