Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

View Transactions

POST {api-url}/viewDisbursementTransactions?ns={community}

Fetches a paginated list of all individual transactions within a specific disbursement, with support for filtering and sorting on the Audit object.

FieldTypeRequirementDescription
UIDxIntegerRequiredThe unique internal identifier for this disbursement.
PageSizeIntegerOptionalThe number of transactions to return per page. Max 1000, defaults to 1000.
CursorStringOptionalThe cursor string from a previous response to fetch the next page.
SortFieldStringOptionalField to sort by. See Sort & Filter Rules.
SortOrderStringOptionalSort order (asc or desc). See Sort & Filter Rules.
FiltersArrayOptionalAn array of filter objects. See Sort and Filter Rules.
{
"UIDx": 637,
"PageSize": 1000,
"Cursor": "a1dJW2xrY3ksLRtJS0UhGHl3ZXNlUjwpZmhAX3cb4...",
"SortField": "Amount",
"SortOrder": "asc",
"Filters": [
{
"Field": "Amount",
"Operator": "<",
"Value": 5000
}
]
}
Terminal window
curl -X POST '{api-url}/viewDisbursementTransactions?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"UIDx":637,"PageSize":1000,"Cursor":"a1dJW2xrY3ksLRtJS0UhGHl3ZXNlUjwpZmhAX3cb4...","SortField":"Amount","SortOrder":"asc","Filters":[{"Field":"Amount","Operator":"<","Value":5000}]}'