Account
List Pending Transactions
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
Account
List Pending Transactions
GET
/
account
/
{account_id}
/
pending_transaction
curl --request GET \
--url https://api.treasuryprime.com/account/{account_id}/pending_transaction \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_1029384756",
"ach_id": "ach_1234567",
"amount": "1975.00",
"balance": "256147.27",
"billpay_payment_id": null,
"book_id": null,
"card_id": null,
"category": null,
"check_id": null,
"check_number": null,
"date": "2017-11-27",
"desc": "EXT-XFER Sq. Nbr.: 123456",
"extended_timestamp": "2017-11-27T01:02:03Z",
"extended_timestamp_precise": "2017-11-27T01:02:03.300Z",
"incoming_ach_id": null,
"incoming_wire_id": null,
"issued_check_id": null,
"network_transfer_id": null,
"related_transfer_ids": [],
"summary": "ACME CORP VENDOR PMT",
"trace_id": null,
"type": "deposit",
"type_source": null,
"wire_id": null
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
The ID of the account to pull pending transactions for
Response
200 - application/json
A list of account.pending_transaction elements
The response is of type any
.
Was this page helpful?
curl --request GET \
--url https://api.treasuryprime.com/account/{account_id}/pending_transaction \
--header 'Authorization: Basic <encoded-value>'
{
"data": [
{
"account_id": "acct_1029384756",
"ach_id": "ach_1234567",
"amount": "1975.00",
"balance": "256147.27",
"billpay_payment_id": null,
"book_id": null,
"card_id": null,
"category": null,
"check_id": null,
"check_number": null,
"date": "2017-11-27",
"desc": "EXT-XFER Sq. Nbr.: 123456",
"extended_timestamp": "2017-11-27T01:02:03Z",
"extended_timestamp_precise": "2017-11-27T01:02:03.300Z",
"incoming_ach_id": null,
"incoming_wire_id": null,
"issued_check_id": null,
"network_transfer_id": null,
"related_transfer_ids": [],
"summary": "ACME CORP VENDOR PMT",
"trace_id": null,
"type": "deposit",
"type_source": null,
"wire_id": null
}
]
}