v1

latestOpenAPI 3.0.1Apache 2.02026-07-17111176225.7 KB
User Management

Create a new user

post/accounts/{accountname}/users

Path parameters

accountnamestring required

Request body

usernamestring required

The username to create

passwordstring required

The initial password for the user, must be at least 6 characters, up to 128

Example request

{
  "password": "password",
  "username": "username"
}

Response

Credential summary

usernamestring required

The username to authenticate with

type'native' | 'internal' | 'external'

The user's type

sourcestring

If the user is external, this is the source that the user was initialized from. All other user types have this set to null

created_atstring date-time

The timestampt the user record was created

last_updatedstring date-time

The timestamp of the last update to this record

Example response

{
  "last_updated": "2000-01-23T04:56:07.000+00:00",
  "created_at": "2000-01-23T04:56:07.000+00:00",
  "source": "source",
  "type": "native",
  "username": "username"
}