Skip to main content

Update User

Update a property of a given user.

External Documentation

To learn more, visit the Authentik documentation.

Basic Parameters

ParameterDescription
NameThe user's name.
User IDThe ID of user. Can be obtained by the List Users action.
UsernameThe user's username.

Advanced Parameters

ParameterDescription
AttributesThe additional attributes of the user.
EmailThe user's email.
GroupsAn array of the ids of user's groups. Can be obtained by the List Groups action.
Is ActiveIs the user active.
Last LoginThe last login of the user.
PathThe path of the user.
TypeThe type of the user.

Example Output

{
"attributes": {},
"avatar": "User's avatar, either a http/https URL or a data URI",
"email": "Email address",
"groups": [
"uuid"
],
"groups_obj": [
{
"attributes": {},
"is_superuser": false,
"name": "string",
"num_pk": 0,
"parent": "uuid",
"parent_name": "string",
"pk": "Group uuid"
}
],
"is_active": false,
"is_superuser": false,
"last_login": "date-time",
"name": "User's display name.",
"path": "string",
"pk": 0,
"type": "string",
"uid": "string",
"username": "string",
"uuid": "uuid"
}

Workflow Library Example

Update User with Authentik and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop