Users
About Users
What are Users?
The User is an entity representing the account on Cirro. Users can work in different spaces (e.g., Ework/Localize), and a separate app_worker and app_user would be created for each. The primary purpose of this entity is authentication and storing settings for all spaces, like notification settings.
Endpoints
GET https://api.cirro.io/v2/users/:id DELETE https://api.cirro.io/v2/users/:id POST https://api.cirro.io/v2/users/:id/worker GET https://api.cirro.io/v2/users/me GET https://api.cirro.io/v2/users/:id/notification_preference POST https://api.cirro.io/v2/users/:id/notification_preferences POST https://api.cirro.io/v2/users/:id/invitation_attempt
The Users object
Attributes
Attribute | Type | Description |
---|---|---|
id | string | The unique identifier of the user |
object | string | Always "user" |
first_name | string | User's first name |
last_name | string | User's last name |
time_zone | string | Selected time zone |
screen_name | string | User's screen name |
contry_code | string | Selected country |
anonymous_email | string | The anonymized email of user |
epam | object of epam_account | User's Epam account, if any |
worker | object of worker | The worker related to the User |
Example
{
"id": "13",
"object": "user",
"first_name": "Grazyna",
"last_name": "Buckridge",
"time_zone": "Asia/Bangkok",
"screen_name": "13lavenia",
"country_code": "RO",
"anonymous_email": "[email protected]"
"epam": {
"id": "12345",
"skills_last_synced_at": 1653955199,
"primary_skill": "EDID of user's primary skill",
"bench_status" "on_bench",
"skills": [
{ "id": "skill EDID", "name": "Ruby" },
{ "id": "skill EDID", "name": "RoR" }
]
},
"worker": {
"billable": false,
"document": {
"id": "13",
"foo": {
"bar": 30
}
}
}
}