Check Deposit
List Check Deposits
Introduction
Account
- Account
- Account Documents
- Business
- Enhanced FDIC Insurance
- Person
- Reserve Account
- Transaction
Account Opening
- Account Product
- Account Application
- Additional Person
- Business Application
- Deposit
- KYC
- KYC Product
- Person Application
Cards
- Card
- Digital Wallet Tokens
- MarqetaJS
- Card Auth Loop Endpoint
- Card Event
- Card Product
Payments
- ACH
- Book Transfer
- Check Issuing
- Check Deposit
- Counterparty
- FedNow
- Manual Hold
- Incoming ACH
- Incoming Wire
- Invoice Account Number
- Network Transfer
- Wire
Testing
- Simulation Endpoint
Utilities
- Document
- File
- Routing Number
- Search
- Webhook
Check Deposit
List Check Deposits
GET
/
check_deposit
curl --request GET \
--url https://api.treasuryprime.com/check_deposit \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_1234567890",
"amount": "100.00",
"amount_discrepancy_detected": false,
"back_image_file_id": "file_0987654321",
"created_at": "2017-11-02T11:55:14Z",
"decision_data": {},
"device": {
"os_name": "ios",
"os_version": "12"
},
"error": null,
"front_image_file_id": "file_1234567890",
"id": "chk_1029384756",
"ocr_account_number": "1234567890",
"ocr_amount": "100.00",
"ocr_check_number": "5250",
"ocr_routing_number": "021001208",
"org_id": "org_1gwmpv3payf",
"person_id": "owner_1234567890",
"rdc_provider_full": {},
"review_information": [],
"risk_rating": "Accept",
"risk_rating_description": "Risk rating assessment by RDC provider",
"status": "submitted",
"updated_at": "2017-11-02T11:56:31Z",
"userdata": null
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
A list of check_deposit elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/check_deposit \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_1234567890",
"amount": "100.00",
"amount_discrepancy_detected": false,
"back_image_file_id": "file_0987654321",
"created_at": "2017-11-02T11:55:14Z",
"decision_data": {},
"device": {
"os_name": "ios",
"os_version": "12"
},
"error": null,
"front_image_file_id": "file_1234567890",
"id": "chk_1029384756",
"ocr_account_number": "1234567890",
"ocr_amount": "100.00",
"ocr_check_number": "5250",
"ocr_routing_number": "021001208",
"org_id": "org_1gwmpv3payf",
"person_id": "owner_1234567890",
"rdc_provider_full": {},
"review_information": [],
"risk_rating": "Accept",
"risk_rating_description": "Risk rating assessment by RDC provider",
"status": "submitted",
"updated_at": "2017-11-02T11:56:31Z",
"userdata": null
}
]
}