| Header | Description |
|---|---|
myAppId | Application identifier used for service authentication |
service-key | Unique service key provided for accessing the verification service |
Authorization | API authorization credentials for secure access |
Content-Type | Specifies the request payload format (application/json) |
| Parameter | Type | Description |
|---|---|---|
clientRefId | String | Unique client reference ID for tracking the request |
mobileNumber | String | Registered mobile number of the account holder |
accountHolderName | String | Name of the account holder for validation |
narration | String | Transaction narration or remark |
toAccountNo | String | Bank account number to be verified |
ifsc | String | IFSC code of the bank branch |
documentType | String | Specifies the verification type (Silent Account Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.status | Overall verification status (e.g., SUCCESS/FAILED) |
result.response_code | Response code returned by NPCI/bank |
result.response_msg | Response message indicating transaction result |
result.trans_date_time | Date and time of the verification transaction |
result.beneficiary_name | Name of the account holder returned after verification |
result.rrn | Retrieval Reference Number (RRN) for the transaction |
result.client_ref_id | Client reference ID provided in the request |
error | Contains error details if verification fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v2_1_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n documentType: \"Silent Account Verification\"\r\n clientRefId: \"27Jul2021004\"\r\n mobileNumber: \"9657551465\"\r\n accountHolderName: \"Tukaram Goroba Waghmare\"\r\n narration: \"csc\"\r\n toAccountNo: \"60274258687\"\r\n ifsc: \"MAHB0000521\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on SilentAccountVerificationResult {\r\n status\r\n response_code\r\n response_msg\r\n trans_date_time\r\n beneficiary_name\r\n rrn\r\n client_ref_id\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "SilentAccountVerificationResult",
"status": "SUCCESS",
"response_code": "00",
"response_msg": "SUCCESS",
"trans_date_time": "26/03/2026 19:03:41",
"beneficiary_name": "Mr Rahul S",
"rrn": "608519000001",
"client_ref_id": "27Jul2021004"
}
}
}
}