Reports
POST /api/organizationTransactionsReport?organizationGuid=87654321-9012-3456-7890-123456789012
{
"Filters": [
{
"Name": "PaymentDate",
"Operation": 7,
"Values": [
"2026-01-01"
]
}
],
"SortColumns": [
{
"Name": "PaymentDate",
"Descending": true,
"Order": 0
}
],
"PageSize": 1000,
"PageIndex": 1
}access token
How many records to return per page.
Which page of results to return. Starts at 1 (0 will also return the first page)
Success
Failure
Export Organization Transactions Report by valid organizationGuid in specified format "csv" or "excel". Defaults to "csv" if not provided
access token
How many records to return per page.
Which page of results to return. Starts at 1 (0 will also return the first page)
Determines which file type the report will be exported to. Valid values: "csv" or "excel"
Success
No content
Failure
No content
POST /api/sourceTransactionsReport
{
"Filters": [
{
"Name": "PaymentDate",
"Operation": 7,
"Values": [
"2026-01-01"
]
}
],
"SortColumns": [
{
"Name": "PaymentDate",
"Descending": true,
"Order": 0
}
],
"PageSize": 1000,
"PageIndex": 1
}access token
How many records to return per page.
Which page of results to return. Starts at 1 (0 will also return the first page)
Success
Failure
Export Source Transactions Report in specified format "csv" or "excel". Defaults to "csv" if not provided
access token
How many records to return per page.
Which page of results to return. Starts at 1 (0 will also return the first page)
Determines which file type the report will be exported to. Valid values: "csv" or "excel"
Success
No content
Failure
No content
Last updated