Create User

POST /auth/users

Create a new user in the caller's org. This will also send an registration email to the created User's email, with a registration code, and pointing him to complete his registration on Dfns Dashboard. The user is created without any permissions.

circle-exclamation
circle-info

Required Permissions

Name
Conditions

Auth:Users:Create

Always Required

Request Body

email *

String

the email address of the new user

kind *

Enumerated Type (String)

the kind of user being created. In this endpoint it can only be "CustomerEmployee" (creating an "EndUser" is done through the Delegated Registration endpoint)

externalId

String

Optional a user defined value that can be used to correlate the entity with an external system

Example:

{
  "email": "[email protected]",
  "kind": "CustomerEmployee"
}

Responses

circle-info
  • See Common Errors for common errors.

  • See User Management Errors for user management specific errors.

Success - The created user

Last updated