Skip to main content

Retrieve NIBSS Collection Batches

Overview​

Retrieves a paginated list of collection batches with optional filtering by batch ID and date range.

Command Details​

  • Command: RetrieveNibssCollectionBatchesQuery
  • Type: Query

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
pageNumberintNoPage number for pagination (default: 1)
pageSizeintNoNumber of records per page (default: 10)
batchIdlongNoFilter by a specific batch ID
startDatestringNoFilter batches created from this date (ISO 8601)
endDatestringNoFilter batches created up to this date (ISO 8601)

Try It Out​

POST/api/bpm/cmdRetrieveNibssCollectionBatchesQuery
Request Body

Response Structure​

{
"response": {
"data": [],
"totalCount": 0,
"pageNumber": 1,
"pageSize": 10
},
"responseCode": "00",
"responseDescription": "Success"
}