Skip to main content
POST
/
api
/
v1
/
auth
/
email_otp
Auth Email Otp
curl --request POST \
  --url https://api.hevn.finance/api/v1/auth/email_otp \
  --header 'Content-Type: application/json' \
  --data '
{
  "sessionKey": "<string>",
  "otpCode": "<string>"
}
'
{
  "status": "ok"
}

Headers

device-id
string | null

Body

application/json

Request schema for email OTP verification.

sessionKey
string
required

Session key from auth/start

otpCode
string
required

6-digit OTP code

Required string length: 6

Response

Successful Response

Simple status response.

status
string
default:ok