POST
/
abdm
/
na
/
v1
/
registration
/
mobile
/
verify
curl --request POST \
  --url https://api.eka.care/abdm/na/v1/registration/mobile/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "otp": "<string>",
  "txn_id": "<string>"
}'
{
  "abha_profiles": [
    {
      "abha_address": "<string>",
      "name": "<string>"
    }
  ],
  "eka": {
    "min_token": "<string>",
    "oid": null,
    "uuid": null
  },
  "skip_state": "abha_end",
  "txn_id": "<string>"
}

Authorizations

Authorization
string
header
required

The API requires a Bearer token (JWT) for authentication.

Body

application/json
otp
string
required

OTP received on the mobile number

txn_id
string
required

Transaction ID received in the previous API response.

Response

200
application/json
OK
abha_profiles
object[] | null

ABHA profiles, will be present if user has created ABHA.

eka
object

Eka IDs, will be present if SkipState is abha_end

skip_state
enum<string>
Available options:
abha_end,
confirm_mobile_otp,
abha_select,
abha_create
txn_id
string

Transaction ID required for the next API call.