POST
/
v1
/
auth
/
login
Login with email and password
curl --request POST \
  --url https://api.wazapin.id/v1/auth/login \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "email": "<string>",
  "password": "<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>"
  },
  "$schema": "<string>"
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
email
string
required

User email address

Minimum string length: 1
password
string
required

User password

Minimum string length: 1
telemetry_id
string

Optional device fingerprint telemetry ID

Response

OK

data
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/AuthUserOutputBody.json"