Skip to content
Rails
Search
Ctrl
K
Cancel
desktop_windows
Get started
Website
Guides
API Reference
left_panel_open
left_panel_close
Get started
Website
Guides
API Reference
Overview
Users
Create
Accounts
Create
List
Retrieve
Update Status
Close
Deposit
Withdraw
Transfer
Transactions
List
List By Account
Retrieve
API Reference
Transactions
Transactions
List transactions by organization
GET
/api/v1/transactions
List account transactions
GET
/api/v1/accounts/{account_id}/transactions
Retrieve transaction
GET
/api/v1/transactions/{id}
Models
Expand
Collapse
TransactionListResponse
object
{
data
,
pagination
}
data
:
array of
object
{
id
,
amount
,
created_at
,
10 more
}
id
:
string
format
uuid
amount
:
number
Amount in minor units
created_at
:
string
format
date-time
currency
:
string
from_account_id
:
string
format
uuid
organization_id
:
string
format
uuid
status
:
"pending"
or
"posted"
or
"failed"
One of the following:
"pending"
"posted"
"failed"
to_account_id
:
string
format
uuid
transaction_kind
:
"deposit"
or
"withdraw"
or
"transfer"
One of the following:
"deposit"
"withdraw"
"transfer"
updated_at
:
string
format
date-time
environment
:
optional
string
failure_reason
:
optional
string
idempotency_key
:
optional
string
pagination
:
object
{
page
,
per_page
,
total_count
,
total_pages
}
page
:
number
minimum
1
per_page
:
number
minimum
1
total_count
:
number
total_pages
:
number
minimum
0
TransactionListByAccountResponse
=
array of
Transaction
{
id
,
account_id
,
amount
,
10 more
}
id
:
string
format
uuid
account_id
:
string
format
uuid
amount
:
string
balance_after
:
string
created_at
:
string
format
date-time
currency
:
string
status
:
"pending"
or
"completed"
or
"failed"
or
"cancelled"
One of the following:
"pending"
"completed"
"failed"
"cancelled"
transaction_type
:
"deposit"
or
"withdrawal"
or
"transfer"
or
2 more
One of the following:
"deposit"
"withdrawal"
"transfer"
"recurring_payment"
"savings_withdraw"
updated_at
:
string
format
date-time
description
:
optional
string
external_recipient_id
:
optional
string
recipient_account_id
:
optional
string
format
uuid
reference_id
:
optional
string
format
uuid
On this page
Overview
Transactions