POST
/
abdm
/
v1
/
profile
/
kyc
/
init
curl --request POST \
  --url https://api.eka.care/abdm/v1/profile/kyc/init \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "<string>",
  "method": "abha-number",
  "user_x_token": "<string>"
}'
{
  "txn_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
identifier
string
required

The identifier, which will be the 14-digit ABHA number for the 'abha-number' method or the 12-digit Aadhaar number for the 'aadhaar' method.

method
enum<string>
required

The method used for KYC, such as ABHA number or Aadhaar.

Available options:
abha-number,
aadhaar
user_x_token
string

user authorization token

Response

200
application/json
OK
txn_id
string

Transaction ID required for the next API call.