| 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 |
|---|---|---|
ifsc | String | Valid IFSC code of the bank branch |
documentType | String | Specifies the verification type (ifsc) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.bank | Name of the bank |
result.branch | Branch name of the bank |
result.address | Full address of the bank branch |
result.city | City where the branch is located |
result.state | State where the branch is located |
result.ifscSubcode | Subcode representing the bank identifier |
error.status | Error status code (if applicable) |
error.message | Error message describing the issue |
error.decryptedError | Detailed error information (if available) |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v1' \
--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 ifsc: \"HDFC0000184\"\r\n documentType: \"ifsc\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on IfscResult {\r\n bank\r\n branch\r\n address\r\n city\r\n state\r\n ifscSubcode\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"bank": "HDFC Bank",
"branch": "BANGALORE - INDIRA NAGAR",
"address": "548/D MARUTHI MANSIONCMH ROADINDIRA NAGARBANGALOREKARNATAKA560 038",
"city": "BANGALORE",
"state": "KARNATAKA",
"ifscSubcode": "HDFC0"
},
"error": null
}
}
}