Theme

Users

User

What are Users?

The User is an entity representing the account on Cirro. Users can work in different spaces (e.g., testIO, DevChord, Fortissimo), 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.

Possible errors: see here

The user object

AttributeTypeDescription
idstringThe unique identifier of the user
objectstringAlways "user"
first_namestringUser's first name
last_namestringUser's last name
time_zonestringSelected time zone
screen_namestringUser's screen name
contry_codestringSelected country
anonymous_emailstringThe anonymized email of user
epamobject of epam_accountUser's Epam account, if any
workerobject of workerThe worker related to the User

{
    "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
            }
        }
    }
}
Previous
Versioning