The User object

This user object is used in the following places:

Here are the properties of user:

FieldTypeDescription
idintegerunique identifier of the user
emailstringemail address of the user
namestringfull name of the user
createdAtintegertimestamp when the user was created
updatedAtintegertimestamp when the user was last updated
isAdminbooleanuser is an admin?
isDeletedbooleanuser has been deactivated?
isPermanentlyDeletedbooleanuser has been deleted?
customAttributes[]arraycustom attributes of the user
customAttributes[].idintegerunique identifier of the custom attribute
customAttributes[].apiNamestringAPI name of the custom attribute
customAttributes[].valuevariousvalue of the custom attribute (one of [boolean, date, datetime, float, string])
groups[]arraygroups the user is a member of
groups[].idintegerunique identifier of the group
groups[].namestringname of the group
managers[]arraymanagers of the user
managers[].idintegerunique identifier of the manager
managers[].emailstringemail address of the manager
managers[].namestringname of the manager
userIdentifiers[]arrayexternal identifiers associated with this user
userIdentifiers[].identifierstringunique identifier of the user in the external system
userIdentifiers[].namespacestringone of [hibob, sso_scim, workday]

{
  "user": {
    "id": 1,
    "name": "Example User",
    "email": "[email protected]",
    "isAdmin": true,
    "isDeleted": false,
    "isPermanentlyDeleted": false,
    "createdAt": 1726510395258,
    "updatedAt": 1726510395258,
    "groups": [
      {
        "id": 1,
        "name": "Ninjas"
      }
    ],
    "customAttributes": [
      {
        "id": 1,
        "apiName": "example_attribute",
        "value": "something"
      }
    ],
    "userIdentifiers": [
      {
        "identifier": "0e8d3dcfe9c9e4c0b7d351f1e14e878b",
        "namespace": "sso_scim"
      }
    ],
    "managers": [
      {
        "id": 3,
        "name": "Manager 2",
        "email": "[email protected]"
      },
      {
        "id": 2,
        "name": "Manager 1",
        "email": "[email protected]"
      }
    ]
  }
}