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.

FieldTypeDescription
objectstringString representing the object’s type. Objects of the same type share the same value. The type here is user.
idstringUnique identifier for the object.
first_namestringUser's first name.
last_namestringUser's last name.
emailstringUser's email.
statusstringThe status of the user. The user can have one of the following statuses: active or invited.

USER

{
  "id": "USR-FSD423423",
  "object": "user",
  "first_name": "Andrea",
  "last_name": "Hartie",
  "email": "[email protected]",
  "status": "active"
}