Skip to main content
POST
/
api
/
v1
/
sub-accounts
/
{sub_auth_id}
/
kyc
/
digilocker
/
verify
DigiLocker verify
curl --request POST \
  --url https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/digilocker/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "access_request_id": "AR_xxxxxxxx"
}
'
{
  "verification_type": "aadhaar",
  "status": "verified",
  "source": "digilocker"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt

Use this file to discover all available pages before exploring further.

Finalizes the Aadhaar verification via DigiLocker after the customer completes OAuth. Pass the access_request_id from DigiLocker Initiate. linked_number is optional (92-series per-number binding).
Authenticate as the parent main account with Authorization: Bearer {parent_jwt}.

Authorizations

Authorization
string
header
required

Parent main-account JWT. Sub-account KYC endpoints authenticate as the parent account that owns the sub-account (or an admin), not with the X-Auth-ID / X-Auth-Token header pair.

Path Parameters

sub_auth_id
string
required

The sub-account's Auth ID.

Example:

"SA_XXXXXX"

Body

application/json
access_request_id
string
required
Example:

"AR_xxxxxxxx"

linked_number
string

Optional. Binds the Aadhaar to a specific number (92-series).

Example:

"+91XXXXXXXXXX"

Response

200 - application/json

Verification result

Outcome of a single KYC verification step.

verification_type
enum<string>
required
Available options:
pan,
gst,
cin,
aadhaar
status
enum<string>
required
Available options:
verified,
failed,
pending
kyc_calls_blocked
boolean

Recomputed sub-account call-blocking state after this verification.

mock
boolean

Present and true on responses from the test-mode endpoints.