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 . |
USER
{
"id": "USR-FSD423423",
"object": "user",
"first_name": "Andrea",
"last_name": "Hartie",
"email": "[email protected]",
"status": "active",
"role_name": "Member"
}