Create User
Create a new user.
External Documentation
To learn more, visit the Authentik documentation.
Basic Parameters
Parameter | Description |
---|---|
The user's email. | |
Name | The user's name. |
Username | The user's username. |
Advanced Parameters
Parameter | Description |
---|---|
Attributes | The additional attributes of the user. |
Groups | An array of the ids of user's groups. Can be obtained by the List Groups action. |
Is Active | Is the user active. |
Last Login | The last login of the user. |
Path | The path of the user. |
Type | The 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
Create User with Authentik and Send Results Via Email
Preview this Workflow on desktop