Query parameters

  • username string Required
  • password string Required
  • email string(email) Required
  • test boolean

    Default value is false.

Responses

  • 201 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 /user/create
curl \
 --request POST 'https://call.xap3y.space/v1/user/create?username=string&password=string&email=hello%40example.com'
Response examples (201)
{
  "error": true,
  "timestamp": "2025-05-04T09:42:00Z",
  "uniqueId": "string"
}
Response examples (403)
{
  "error": true,
  "timestamp": "2025-05-04T09:42:00Z",
  "uniqueId": "string"
}