User Object
User object in Cliq is of the map data type and contains the user's profile information. The user object carries the following arguments to it
Attribute | Description |
id | User ID (unique string identifier) |
first_name | User's first name |
last_name | User's last name |
User's email address | |
admin | Boolean. Define's if the user is an admin in Cliq. |
organization_id | Unique ID of the user's organization in Cliq |
timezone | Relative time-zone to which a user belongs. |
country | Geographical location of the user |
language | Default language of the user |
Below is a sample user object
{
"country": "us",
"timezone": "Asia/calcutta",
"last_name": "Fisher",
"first_name": "Scott",
"language": "en",
"id": "123456",
"email": "scott.fisher@zylcal.com"
"admin" : true //boolean
"organization_id" : "123456456"
}