Voided Check
Ocrolus pulls standard key values from voided checks to facilitate the logistics of bank account information
The form_type
parameter VOIDED_CHECK
for the Upload PDF endpoint is required for this form type.
Learn more about how we process voided checks here.
Optional fields captured
Configuration-driven output
All fields below are optionally captured, depending on your order form. To adjust fields captured, please speak with your Ocrolus Account Manager.
JSON Attribute | Data Type | Description |
---|---|---|
voided_check-Part1:nameOfBusiness | Text | Name Of Business |
voided_check-Part1:businessAddress:addressLine1 | Text | Business Address |
voided_check-Part1:businessAddress:addressLine2 | Text | Business Address |
voided_check-Part1:businessAddress:city | Text | Business Address |
voided_check-Part1:businessAddress:state | State | Business Address |
voided_check-Part1:businessAddress:zip | ZIP Code | Business Address |
voided_check-Part1:businessPhoneNumber | Phone Number | Business Phone Number |
voided_check-Part1:nameOfBank | Text | Name Of Bank |
voided_check-Part2:checkNumber(TopOfCheck) | Integer | Check Number (Top Of Check) |
voided_check-Part2:checkNumber(BottomOfCheck) | Integer | Check Number (Bottom Of Check) |
voided_check-Part2:routingNumber | Routing Number | Routing Number |
voided_check-Part2:accountNumber | Integer | Account Number |
Sample form
The below Ocrolus sample PDF (input) matches the below sample JSON result (output).
Sample JSON result
{
"status": 200,
"response": {
"pk": 32535575,
"uuid": "9a401f64-7f9f-40f4-9f54-bf240ba596f6",
"name": "Voided Check API Documentation",
"created": "2023-04-21T20:19:52Z",
"created_ts": "2023-04-21T20:19:52Z",
"verified_pages_count": 1,
"book_status": "ACTIVE",
"id": 32535575,
"forms": [
{
"pk": 46115051,
"uuid": "d79541a9-d049-45c2-bf93-6258fd1e0043",
"uploaded_doc_pk": 54425689,
"form_type": "VOIDED_CHECK",
"raw_fields": {
"voided_check-Part1:nameOfBank": {
"value": "FIRST BANK OF EXAMPLES",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part2:accountNumber": {
"value": "40123456789",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part2:routingNumber": {
"value": "101112131",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:nameOfBusiness": {
"value": "OCROLUS INC.",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessAddress:zip": {
"value": "11111",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessPhoneNumber": {
"value": "",
"is_empty": true,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessAddress:city": {
"value": "NEW YORK",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessAddress:state": {
"value": "NY",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part2:checkNumber(TopOfCheck)": {
"value": "1025",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part2:checkNumber(BottomOfCheck)": {
"value": "001025",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessAddress:addressLine1": {
"value": "123 EXAMPLE DR",
"is_empty": false,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
},
"voided_check-Part1:businessAddress:addressLine2": {
"value": "",
"is_empty": true,
"alias_used": null,
"source_filename": "Ocrolus Sample PDF - Voided Check.pdf"
}
},
"form_config_pk": 216942,
"tables": [],
"attribute_data": null
}
],
"book_is_complete": true
},
"message": "OK"
}
Updated 3 months ago