| 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 |
|---|---|---|
url | String | Public URL of the cheque image to be processed |
documentType | String | Specifies the verification type (cheque ocr) |
| Field | Description |
|---|---|
request_id | Unique request identifier for tracking |
status_code | Status code of the request |
case_id | Case ID for internal reference |
result.accNo | Extracted bank account number (masked if applicable) |
result.bank | Name of the bank |
result.chequeNo | Cheque number |
result.ifsc | IFSC code of the bank branch |
result.micr | MICR code of the cheque |
result.bankDetails.address | Address of the bank branch |
result.bankDetails.branch | Branch name |
result.bankDetails.city | City of the branch |
result.bankDetails.contact | Contact number of the branch (if available) |
result.bankDetails.district | District of the branch |
result.bankDetails.state | State of the branch |
result.name | Extracted account holder name(s) |
error | Contains error details if extraction 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: \"cheque ocr\"\r\n url: \"https://pg-all-js-assets.s3.ap-south-2.amazonaws.com/SBI_Cancelled_Cheque.jpg\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on ChequeOCRResult {\r\n request_id\r\n status_code\r\n case_id\r\n accNo\r\n bank\r\n chequeNo\r\n ifsc\r\n micr\r\n bankDetails {\r\n address\r\n branch\r\n city\r\n contact\r\n district\r\n state\r\n }\r\n name\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"statusCode": 0,
"body": {
"status": "string",
"code": 0,
"message": "string",
"timestamp": "string",
"errors": [
null
]
}
}