The user object contains the first name, last name and email of the users in your account and contains a status which indicates if the user has signed in or is still in invited status.
| Field | Type | Description |
|---|---|---|
object | string | String representing the object’s type. Objects of the same type share the same value. The type here is user. |
id | string | Unique identifier for the object. |
first_name | string | User's first name. |
last_name | string | User's last name. |
email | string | User's email. |
status | string | The status of the user. The user can have one of the following statuses: active or invited. |
role_name | string | The name of the role associated with the user, for example: Administrator, Member, Team manager . |
timezone | string | User's timezone. Displayed in IANA timezone format |
teams | array | The teams the user belongs to. |
USER
{
"id": "USR-FSD423423",
"object": "user",
"first_name": "Andrea",
"last_name": "Hartie",
"email": "[email protected]",
"status": "active",
"role_name": "Member",
"timezone": "America/Chicago",
"teams": ["TM-GCJU8DLBTPY1"]
}