For the complete documentation index, see llms.txt. This page is also available as Markdown.

Listing bank deposits

GET /api/public/v1/transactions/bank_deposits

This endpoint returns a list of all bank deposit transactions.

Headers

Name
Value

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

URL Parameters

Name
Type
Description

order

string

Order in which the list of transactions should be returned. Can be created_at.

order_type

string

Order type. Can be either asc or desc.

page

number

Page for which you want to return transactions.

per_page

number

Number of transactions per page to return.

created_at_from

string

Date and time filter. Supports timestamps in ISO 8601 format, e.g. 2024-06-18T15:49:02.031Z.

created_at_to

string

Date and time filter. Supports timestamps in ISO 8601 format, e.g. 2024-06-18T15:49:02.031Z.

Response Body

Name
Type
Description

data[].id

string

Transaction ID.

data[].type

string

Entity type returned. Always transactions.

data[].attributes

object

Set of transaction attributes.

data[].attributes.createdAt

string

Timestamp when the deposit was created. Refer to the Date and time format page.

data[].attributes.simplifiedState

string

Transaction status.

data[].attributes.transactionType

string

Transaction type. Always BankDepositTransaction.

data[].attributes.amount

string

Amount credited to the account.

data[].attributes.currency

string

Currency code of the transaction.

data[].attributes.balance

string

Account balance immediately after Txn processed this transaction. null when not applicable.

data[].attributes.reference

string

Bank deposit reference.

data[].attributes.accountId

string

ID of the account the deposit was credited to.

data[].relationships.account.id

string

ID of the account the deposit belongs to.

included[].type(accounts).attributes

object

The account the deposit was credited to.

included[].type(bankDepositTransactions).attributes

object

Bank deposit details, including state, payer information (payerName, payerIban, payerBic, payerAddress), amount, and currency.

meta.page

number

Current page number.

meta.per_page

number

Page size used for the response.

meta.total

number

Total number of deposits matching the query.

Response

Last updated