Get balance splits for a specific transaction.
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
account_id
string
required
Unique identifier of the Account.
transaction_id
string
required
Unique identifier of the Transaction.
is_discarded
boolean
Include only balance splits where is_discarded matches the provided value.
truetruefalse
effective_at_after
date-time
Include only balance splits where effective_at is at or after the provided timestamp.
effective_at_before
date-time
Include only balance splits where effective_at is at or before the provided timestamp.
issued_at_after
date-time
Include only balance splits where issued_at is at or after the provided timestamp.
issued_at_before
date-time
Include only balance splits where issued_at is at or before the provided timestamp.
active_before
date-time
Include only balance splits which are issued before the provided timestamp, and which are not discarded, or are discarded after the provided timestamp.
sort_by
string
enum
Return records ordered by the provided column name: defaults to issued_at.
issued_ateffective_atissued_at
Allowed:
effective_at``issued_at
starting_after
string
Pass the value from the paging response body in your previous request. If not provided, the zero-indexed starting point will be used. Either starting_after or ending_before may be provided, but not both.
ending_before
string
limit
integer
The maximum number of balance splits to be returned. Defaults to 20.
``200 Array of balance splits, their related entity ids, types, and other metadata.
``401
Unauthorized.
``403
Forbidden.
``404
Transaction or account not found.
``429
Too many requests.
``default
Unexpected Error.
Updated 6 months ago
curl --request GET \
--url https://contact/%20sales%20to%20enable%20your%20sandbox/accounts//transactions//balance_splits \
--header 'accept: application/json'
``