Create a User

post

/api/v2/users/

Make a POST request to this resource with the following user fields to create a new user:

  • username: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string, required)
  • first_name: (string, default="")
  • last_name: (string, default="")
  • email: (string, default="")
  • is_superuser: Designates that this user has all permissions without explicitly assigning them. (boolean, default=False)
  • is_system_auditor: (boolean, default=False)
  • password: Field used to change the password. (string, default="")

Request

Supported Media Types
Body ()
Root Schema : User
Type: object
Show Source
Back to Top

Response

Supported Media Types

201 Response

Body ()
Root Schema : User
Type: object
Show Source
Back to Top