Skip to content

Register User

Request

Bodyapplication/jsonrequired
usernamestring, (email)(Username)required
passwordstring(Password)required
POST
/api/v1/users/signup
curl -i -X POST \
  https://matric-docs.redocly.app/_mock/openapi/api/v1/users/signup \
  -H 'Content-Type: application/json' \
  -d '{
    "username": "user@example.com",
    "password": "string"
  }'

Responses

Successful Response

Bodyapplication/json
usernamestring or null(Username)
Any of:
string
rolesstring(Roles)required
scopesArray of strings(Scopes)
Default:[]
Response
{ "username": "string", "roles": "string", "scopes": [] }