Register a new user

POST /api/v1/user/register
application/json

Body Required

Responses

POST /api/v1/user/register
curl \
 -X POST https://api.crawlora.com/api/v1/user/register \
 -H "Content-Type: application/json" \
 -d '{"email":"string","first_name":"string","last_name":"string","password":"string","country":"string","language":"string","timezone":"string"}'
Request examples
{
  "email": "string",
  "first_name": "string",
  "last_name": "string",
  "password": "string",
  "country": "string",
  "language": "string",
  "timezone": "string"
}
Response examples (201)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}
Response examples (409)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}
Response examples (422)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}