API 2.0
Users

Users

Query organization users

Retrieve list of company users
/users

Response

Sample response →
[
    {
        "id": "USER-ID",
        "companyRole": "User",
        "isAdmin": false,
        "momentCreated": "2018-01-08T15:35:16.648732",
        "name": "Alex Kim",
        "primaryEmail": "alex@company.com",
        "reportsToUserId": "USER-ID"
    },
    ...
]

Get organization user

Retrieve organization user details.
/user/USER-ID

Response

Sample response →
{
    "id": "USER-ID",
    "companyRole": "User",
    "isAdmin": false,
    "momentCreated": "2018-01-08T15:35:16.648732",
    "name": "Alex Kim",
    "primaryEmail": "alex@company.com",
    "reportsToUserId": "USER-ID"
}