Users
Use this endpoint to obtain details on Adaptix's users (administrators).
Get User
HTTP Request
GET /users/ID
Response
Expected Response Code: 200
See JSON code example.
User Properties
Name | Type | Description |
---|---|---|
id | int | ID of the contact |
dateAdded | datetime | Date/time contact was created |
createdBy | int | ID of the user that created the contact |
createdByUser | string | Name of the user that created the contact |
dateModified | datetime/null | Date/time contact was last modified |
lastActive | datetime/null | Date/time when the user last active |
modifiedBy | int | ID of the user that last modified the contact |
modifiedByUser | string | Name of the user that last modified the contact |
username | string | Username which can be used for log in to Adaptix. |
firstName | string | First Name of the user |
lastName | string | Last Name of the user |
string | Email of the user | |
position | string | User's position title |
role | object | Role details |
timezone | string | Timezone of the user |
onlineStatus | string | Online status of the user |
signature | string | Signature of the user which can be used in the emails |
List Contact Users
HTTP Request
GET /users
Response
Expected Response Code: 200
See JSON code example.
User Properties
Name | Type | Description |
---|---|---|
id | int | ID of the contact |
dateAdded | datetime | Date/time contact was created |
createdBy | int | ID of the user that created the contact |
createdByUser | string | Name of the user that created the contact |
dateModified | datetime/null | Date/time contact was last modified |
lastActive | datetime/null | Date/time when the user last active |
modifiedBy | int | ID of the user that last modified the contact |
modifiedByUser | string | Name of the user that last modified the contact |
username | string | Username which can be used for log in to Adaptix. |
firstName | string | First Name of the user |
lastName | string | Last Name of the user |
string | Email of the user | |
position | string | User's position title |
role | array | List of roles of the user |
timezone | string | Timezone of the user |
onlineStatus | string | Online status of the user |
signature | string | Signature of the user which can be used in the emails |
Create User
HTTP Request
POST /users/new
Post Parameters
Name | Description |
---|---|
username | string |
firstName | string |
lastName | string |
string | |
position | string |
role | int |
timezone | string |
onlineStatus | string |
signature | string |
plainPassword | array |
Response
Expected Response Code: 201
Properties
Same as Get User.
Edit User
PUT creates a user if the given ID does not exist and clears all the user information, adds the information from the request. PATCH fails if the user with the given ID does not exist and updates the user field values with the values form the request.
HTTP Request
To edit a user and return a 404 if the user is not found:
PATCH /users/ID/edit
To edit a user and create a new one if the user is not found:
PUT /users/ID/edit
Post Parameters
Name | Description |
---|---|
username | string |
firstName | string |
lastName | string |
string | |
position | string |
role | int |
timezone | string |
signature | string |
Response
If PUT
, the expected response code is 200
if the user was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get User.
Delete User
Delete a user.HTTP Request
DELETE /users/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get User.
Get Self User
Get a self user.HTTP Request
GET /users/self
Response
Expected Response Code: 200
Properties
Same as Get User.
Check User Permissions
HTTP Request
GET /users/ID/permissioncheck
Response
Expected Response Code: 200
Properties
array of requested permissions of string in case of just one