Skip to main content

Retrieve Remita Collection Batches

Overview​

Retrieves a paginated list of Remita collection batches. Supports filtering by organisation and date range, with optional export mode for bulk data extraction.

Command Details​

  • Command: RetrieveRemitaCollectionBatchesQuery
  • Type: Query

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
pageNumberintNoPage number for pagination (default: 1)
pageSizeintNoNumber of records per page (default: 10)
organisationIdlongNoFilter by organisation
isExportboolNoExport mode for bulk retrieval (default: false)
startDatestringNoFilter batches created on or after this date (ISO 8601)
endDatestringNoFilter batches created on or before this date (ISO 8601)

Try It Out​

POST/api/bpm/cmdRetrieveRemitaCollectionBatchesQuery
Request Body

Response Structure​

{
"success": true,
"data": {
"items": [
{
"id": 3001,
"batchName": "March 2026 Loan Collections",
"status": "Authorized",
"createdAt": "2026-03-08T10:30:00Z"
},
{
"id": 2998,
"batchName": "February 2026 Loan Collections",
"status": "Completed",
"createdAt": "2026-02-05T09:00:00Z"
}
],
"totalCount": 15,
"pageNumber": 1,
"pageSize": 10
},
"message": "Collection batches retrieved successfully"
}