Skip to main content

UserResult

uidstringrequired

Unique identifier of the user

emailstring<email>required

Email address of the user

firstNamestringrequired

First name of the user

lastNamestringrequired

Last name of the user

rolestringrequired

Role of the user

Possible values: [ADMIN, MEMBER]

allAssetsbooleanrequired

Whether the user has access to all assets

userGroups object[]required

Groups the user belongs to

  • Array [
  • uidstringrequired

    Unique identifier of the user group

    labelstringrequired

    Display label of the user group

  • ]
  • permissions object

    Map of user permissions by type

    property name*any

    Map of user permissions by type

    UserResult
    {
    "uid": "string",
    "email": "user@example.com",
    "firstName": "string",
    "lastName": "string",
    "role": "ADMIN",
    "allAssets": true,
    "userGroups": [
    {
    "uid": "string",
    "label": "string"
    }
    ],
    "permissions": {}
    }