Skip to main content

UserUpdate

Payload used to update User. Optional fields include name, email, alias, type, groups, and 3 more.

name object
anyOf
string
email object
anyOf
string<email>
alias object
anyOf
string
type object
anyOf
string
groups object
anyOf
  • Array [
  • string
  • ]
  • tags object
    anyOf
  • Array [
  • string
  • ]
  • is_active object
    anyOf
    boolean
    avatar_config object

    Avatar configuration as a JSON object containing only primitive values, limited to 4 KB. Set this field to null to remove the stored configuration.

    anyOf
    object
    UserUpdate
    {
    "name": "string",
    "email": "user@example.com",
    "alias": "string",
    "type": "string",
    "groups": [
    "string"
    ],
    "tags": [
    "string"
    ],
    "is_active": true,
    "avatar_config": {}
    }