Roles
Use this endpoint to obtain details on Adaptix's roles (administrators).
Get Role
HTTP Request
GET /roles/ID
Response
Expected Response Code: 200
See JSON code example.
Role Properties
Name | Type | Description |
---|---|---|
id | int | ID of the contact |
dateAdded | datetime | Date/time contact was created |
createdBy | int | ID of the role that created the contact |
createdByRole | string | Name of the role that created the contact |
dateModified | datetime/null | Date/time contact was last modified |
modifiedBy | int | ID of the role that last modified the contact |
modifiedByRole | string | Name of the role that last modified the contact |
name | string | Name of the role |
description | string | Description of the role |
isAdmin | boolean | Whether the role has full access or only some |
rawPermissions | array | List of roles |
List Contact Roles
HTTP Request
GET /roles
Response
Expected Response Code: 200
See JSON code example.
Role Properties
Name | Type | Description |
---|---|---|
id | int | ID of the contact |
dateAdded | datetime | Date/time contact was created |
createdBy | int | ID of the role that created the contact |
createdByRole | string | Name of the role that created the contact |
dateModified | datetime/null | Date/time contact was last modified |
modifiedBy | int | ID of the role that last modified the contact |
modifiedByRole | string | Name of the role that last modified the contact |
name | string | Name of the role |
description | string | Description of the role |
isAdmin | boolean | Whether the role has full access or only some |
rawPermissions | array | List of roles |
Create Role
HTTP Request
POST /roles/new
Post Parameters
Name | Description |
---|---|
name | string |
description | string |
isAdmin | boolean |
rawPermissions | array |
Response
Expected Response Code: 201
Properties
Same as Get Role.
Edit Role
PUT creates a role if the given ID does not exist and clears all the role information, adds the information from the request. PATCH fails if the role with the given ID does not exist and updates the role field values with the values form the request.
HTTP Request
To edit a role and return a 404 if the role is not found:
PATCH /roles/ID/edit
To edit a role and create a new one if the role is not found:
PUT /roles/ID/edit
Post Parameters
Name | Description |
---|---|
name | string |
description | string |
isAdmin | boolean |
rawPermissions | array |
Response
If PUT
, the expected response code is 200
if the role was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Role.
Delete Role
Delete a role.HTTP Request
DELETE /roles/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Role.