Connect
- Webhooks
HealthAI
- Assessment
- EkaScribe
General Tools
- Medical Document Parsing
Doctor Tool
- Actors
- Instructions
- Patient Registration API
- Doctor and clinic API
- Appointment API
- Payments API
- Prescription API
- Notify
- Webhooks
ABDM Connect
- Create and Login
- User Session
- Patient Requests
- Consents
- Care Contexts
- Providers
- Profile
- Scan & Share
- Errors
Medical Knowledge-bases
- Overview
- Protocols
- Medications
Medical Records
- Create
- Read
- Update
- Delete
- Webhooks
User App
- Notifications
- Vital
- Webhooks
- Privacy
Release Notes
- ABDM Connect
KYC
Kyc verify
Verify OTP to complete KYC
POST
/
abdm
/
v1
/
profile
/
kyc
/
verify
curl --request POST \
--url https://api.eka.care/abdm/v1/profile/kyc/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"otp": "<string>",
"txn_id": "<string>",
"user_x_token": "<string>"
}'
{
"txn_id": "<string>"
}
Authorizations
The API requires a Bearer token (JWT) for authentication.
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.eka.care/abdm/v1/profile/kyc/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"otp": "<string>",
"txn_id": "<string>",
"user_x_token": "<string>"
}'
{
"txn_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.