Create a new user.

External Documentation

To learn more, visit the Authentik documentation.

Basic Parameters

ParameterDescription
EmailThe user’s email.
NameThe user’s name.
UsernameThe user’s username.

Advanced Parameters

ParameterDescription
AttributesThe additional attributes of the user.
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

{
	"pk": 17,
	"username": "<string>",
	"name": "<string>",
	"is_active": true,
	"last_login": null,
	"is_superuser": false,
	"groups": [],
	"groups_obj": [],
	"email": "<string>",
	"avatar": "<string>",
	"attributes": {},
	"uid": "<string>",
	"path": "<string>",
	"type": "<string>",
	"uuid": "<string>",
	"password_change_date": "2025-04-17T12:31:40.189741Z"
}

Workflow Library Example

Create User with Authentik and Send Results Via Email

Preview this Workflow on desktop