Listing bank withdrawals
GET /api/public/v1/transactions/bank_withdrawals
This endpoint returns a list of all bank withdrawal transactions.
Headers
Content-Type
application/vnd.api+json
Authorization
Bearer <api_key>
URL Parameters
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
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 withdrawal was created. Refer to the Date and time format page.
data[].attributes.simplifiedState
string
Transaction status.
data[].attributes.transactionType
string
Transaction type. Always BankWithdrawalTransaction.
data[].attributes.amount
string
Amount debited from the account. Negative for withdrawals.
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 withdrawal reference.
data[].attributes.accountId
string
ID of the account the withdrawal was debited from.
data[].relationships.account.id
string
ID of the account the withdrawal belongs to.
included[].type(accounts).attributes
object
The account the withdrawal was debited from.
included[].type(bankAccounts).attributes
object
The destination bank account, including beneficiaryName, iban, bankName, and bankBic.
included[].type(bankWithdrawalTransactions).attributes
object
Withdrawal details, including fee, payAmount, absorbFees, paymentStatus, approvalStatus, and state.
meta.page
number
Current page number.
meta.per_page
number
Page size used for the response.
meta.total
number
Total number of withdrawals matching the query.
Response
Last updated