Account Activity

account_activity

Methods

List Account Activity -> CursorPage<{ token, category, created, 10 more... } | | | 3 more...>
get/v1/account_activity

Retrieve a list of transactions across all public accounts.

query Parameters
account_token: string
Optional
(format: uuid)

Filter by account token

begin: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

business_account_token: string
Optional
(format: uuid)

Filter by business account token

category:
Optional

Filter by transaction category

"ACH"
"BALANCE_OR_FUNDING"
"FEE"
"REWARD"
"ADJUSTMENT"
"DERECOGNITION"
"DISPUTE"
"CARD"
"EXTERNAL_ACH"
"EXTERNAL_CHECK"
"EXTERNAL_FEDNOW"
"EXTERNAL_RTP"
"EXTERNAL_TRANSFER"
"EXTERNAL_WIRE"
"MANAGEMENT_ADJUSTMENT"
"MANAGEMENT_DISPUTE"
"MANAGEMENT_FEE"
"MANAGEMENT_REWARD"
"MANAGEMENT_DISBURSEMENT"
"PROGRAM_FUNDING"
end: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

ending_before: string
Optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

financial_account_token: string
Optional
(format: uuid)

Filter by financial account token

page_size: number
Optional
(maximum: 100, minimum: 1, default: 50)

Page size (for pagination).

result:
Optional

Filter by transaction result

"APPROVED"
"DECLINED"
starting_after: string
Optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

status:
Optional

Filter by transaction status

"DECLINED"
"EXPIRED"
"PENDING"
"RETURNED"
"REVERSED"
"SETTLED"
"VOIDED"
Response fields
data: Array<{ token, category, created, 10 more... } | | | 3 more...>
Optional
has_more: boolean
Optional

Indicates if there are more transactions available for pagination

Request example
200Example
Get Single Transaction From Account Activity -> { token, category, created, 10 more... } | | | 3 more...
get/v1/account_activity/{transaction_token}

Retrieve a single transaction

Domain types

WirePartyDetails = { account_number, agent_id, agent_name, 1 more... }