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 |
---|---|---|
| string | String representing the object’s type. Objects of the same type share the same value. The type here is |
| string | Unique identifier for the object. |
| string | User's first name. |
| string | User's last name. |
| string | User's email. |
| string | The status of the user. The user can have one of the following statuses: |
{
"id": "USR-FSD423423",
"object": "user",
"first_name": "Andrea",
"last_name": "Hartie",
"email": "[email protected]",
"status": "active"
}