POST
/
client
/
patient
/
verifyLoginOTP
curl --request POST \
  --url https://v2.flabs.in/client/patient/verifyLoginOTP \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "otp": "123456",
  "otpToken": "otp-token"
}'
{
  "patientToken": "patient-token"
}

Authorizations

Authorization
string
header
required

Authorization token obtained from the auth API

Body

application/json
otp
string
required

OTP received by the patient

otpToken
string
required

Token received from getLoginOTP API

Response

200
application/json
Successful response
patientToken
string

JWT token for patient authentication