Skip to main content

Retrieve NIBSS Collections

Overview​

Retrieves a paginated list of individual collection items with optional filtering by batch, mandate, date range, and export flag.

Command Details​

  • Command: RetrieveNibssCollectionsQuery
  • Type: Query

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
pageNumberintNoPage number for pagination (default: 1)
pageSizeintNoNumber of records per page (default: 10)
batchIdintNoFilter collections by batch ID
mandateIdintNoFilter collections by mandate ID
isExportboolNoSet to true to export all results (default: false)
startDatestringNoFilter from this date (ISO 8601)
endDatestringNoFilter up to this date (ISO 8601)

Try It Out​

POST/api/bpm/cmdRetrieveNibssCollectionsQuery
Request Body

Response Structure​

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