POST /auth/register
application/json

Body Required

  • username string Required
  • email string(email) Required
  • password string Required
  • inviteCode string Required

Responses

  • 200 application/json

    Standard API response

    Hide response attributes Show response attributes object
    • error boolean
    • timestamp string(date-time)
    • uniqueId string | null
  • 403 application/json

    Forbidden

    Hide response attributes Show response attributes object
    • error boolean
    • timestamp string(date-time)
    • uniqueId string | null
POST /auth/register
curl \
 --request POST 'https://call.xap3y.space/v1/auth/register' \
 --header "Content-Type: application/json" \
 --data '{"username":"string","email":"hello@example.com","password":"string","inviteCode":"string"}'
Request examples
{
  "username": "string",
  "email": "hello@example.com",
  "password": "string",
  "inviteCode": "string"
}
Response examples (200)
{
  "error": true,
  "timestamp": "2026-05-04T09:42:00Z",
  "uniqueId": "string"
}
Response examples (403)
{
  "error": true,
  "timestamp": "2026-05-04T09:42:00Z",
  "uniqueId": "string"
}