Check Issuing
List Issued Checks
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 Issuing
List Issued Checks
GET
/
check
curl --request GET \
--url https://api.treasuryprime.com/check \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_11gag8g8aw8tzv",
"amount": "10.05",
"check_date": "2021-11-09T22:39:48Z",
"check_number": "12012",
"created_at": "2021-11-09T22:39:48Z",
"id": "ch_11grny5mfhvjnp",
"memo": "presidential pension",
"message": "Presidential pension for November 2021. Please deposit within 60 days.",
"recipient": {
"address": {
"city": "Washington",
"postal_code": "20003",
"state": "DC",
"street_line_1": "1600 Pennsylvania Ave.",
"street_line_2": ""
},
"name": "George Washington"
},
"status": "pending",
"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 elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/check \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_11gag8g8aw8tzv",
"amount": "10.05",
"check_date": "2021-11-09T22:39:48Z",
"check_number": "12012",
"created_at": "2021-11-09T22:39:48Z",
"id": "ch_11grny5mfhvjnp",
"memo": "presidential pension",
"message": "Presidential pension for November 2021. Please deposit within 60 days.",
"recipient": {
"address": {
"city": "Washington",
"postal_code": "20003",
"state": "DC",
"street_line_1": "1600 Pennsylvania Ave.",
"street_line_2": ""
},
"name": "George Washington"
},
"status": "pending",
"userdata": null
}
]
}