UserUpdate
Payload used to update User. Optional fields include name, email, alias, type, groups, and 3 more.
name object
anyOf
- string
- null
string
email object
anyOf
- string<email>
- null
string<email>
alias object
anyOf
- string
- null
string
type object
anyOf
- string
- null
string
groups object
anyOf
- string[]
- null
Array [
string
]
tags object
anyOf
- string[]
- null
Array [
string
]
is_active object
anyOf
- boolean
- null
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.
- object
- null
object
UserUpdate
{
"name": "string",
"email": "user@example.com",
"alias": "string",
"type": "string",
"groups": [
"string"
],
"tags": [
"string"
],
"is_active": true,
"avatar_config": {}
}