cURL
curl --request GET \ --url https://api.example.com/api/banking/pending \ --header 'Authorization: <authorization>' \ --header 'organization-id: <organization-id>'
{ "pagination": { "total": 100, "page": 1, "pageSize": 10 }, "data": [ { "amount": 123, "date": {}, "accountId": 123, "pending": true, "currencyCode": "<string>", "withdrawal": 123, "deposit": 123, "isDepositTransaction": true, "isWithdrawalTransaction": true, "formattedAmount": "<string>", "formattedDate": "<string>", "formattedDepositAmount": "<string>", "formattedWithdrawalAmount": "<string>", "referenceNo": "<string>", "payee": "<string>", "description": "<string>", "plaidTransactionId": "<string>", "recognizedTransactionId": 123 } ] }
Value must be 'Bearer ' where is an API key prefixed with 'bc_' or a JWT token.
"Bearer bc_1234567890abcdef"
Required if Authorization is a JWT token. The organization ID to operate within.
Page number for pagination
1
Number of items per page
10
Filter by bank account ID
Returns a list of pending bank account transactions
Pagination metadata
Show child attributes