POST
/
v1
/
auth
/
register
/
verify
Step 2: Verify OTP code and complete registration
curl --request POST \
  --url https://api.wazapin.com/v1/auth/register/verify \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "email": "<string>",
  "otp_code": "<string>",
  "password": "<string>",
  "name": "<string>",
  "telemetry_id": "<string>"
}
'
{
  "data": {
    "created_at": "<string>",
    "email": "<string>",
    "email_verified": true,
    "id": "<string>",
    "image": "<string>",
    "name": "<string>",
    "timezone": "<string>",
    "week_start": "<string>",
    "first_name": "<string>",
    "last_name": "<string>"
  }
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
email
string
required

User email address

Minimum string length: 1
otp_code
string
required

6-digit OTP code

Required string length: 6
password
string
required

Password (min 8 characters)

Minimum string length: 8
name
string

User full name (optional)

telemetry_id
string

Optional device fingerprint telemetry ID

Response

Created

data
object
required