Create user

POST /v1/security/users

Create a user.

application/json

Body

  • username string

Responses

  • 200

    User successfully created

POST /v1/security/users
curl \
 --request POST 'http://localhost:9644/v1/security/users' \
 --header "Content-Type: application/json" \
 --data '{"username":"string"}'
Request examples
{
  "username": "string"
}