Skip to main content

Create Remita Collection Batch

Overview​

Creates a new collection batch for grouping loan repayment collections. The batch is created in Draft status and must be authorized before it can be run. Optionally, you can pre-populate the batch with specific loan requests at creation time.

Command Details​

  • Command: CreateRemitaCollectionBatchCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
batchNamestringYesName for the collection batch
batchDescriptionstringNoDescription or label for the batch
organisationIdlongYesOrganisation the batch belongs to
loanRequestIdsarray of longNoPre-populate batch with specific loan requests

Try It Out​

POST/api/bpm/cmdCreateRemitaCollectionBatchCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 3001,
"batchName": "March 2026 Loan Collections",
"status": "Draft",
"createdAt": "2026-03-08T10:30:00Z"
},
"message": "Collection batch created successfully"
}