Skip to main content

Retrieve NIBSS Collection Transactions

Overview​

Retrieves a paginated list of collection transactions. Transactions represent the actual NIBSS direct debit operations generated when a batch is run. Results can be filtered by batch, collection, mandate, date range, and export flag.

Command Details​

  • Command: RetrieveNibssCollectionTransactionsQuery
  • 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 transactions by batch ID
collectionIdintNoFilter transactions by collection item ID
mandateIdintNoFilter transactions 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/cmdRetrieveNibssCollectionTransactionsQuery
Request Body

Response Structure​

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