POST
/
users
Create user
curl --request POST \
  --url https://api.fluxend.app/users \
  --header 'Content-Type: application/json' \
  --data '{
  "bio": "<string>",
  "email": "<string>",
  "password": "<string>",
  "username": "<string>"
}'
{
  "content": {
    "bio": "<string>",
    "createdAt": "<string>",
    "email": "<string>",
    "organizationUuid": "<string>",
    "roleId": 123,
    "status": "<string>",
    "updatedAt": "<string>",
    "username": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Body

application/json

User details

The body is of type object.

Response

201
application/json

User created

The response is of type object.