Skip to main content

Authorize Remita Collection Batch

Overview​

Authorizes a collection batch, transitioning it from Draft to Authorized status. Only authorized batches can be run to execute the underlying collection requests. This serves as the approval step in the maker-checker workflow.

Command Details​

  • Command: AuthorizeRemitaCollectionBatchCommand
  • Type: Command

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongYesThe ID of the batch to authorize
commentstringNoOptional authorization comment

Try It Out​

POST/api/bpm/cmdAuthorizeRemitaCollectionBatchCommand
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 3001,
"status": "Authorized",
"authorizedAt": "2026-03-08T11:00:00Z"
},
"message": "Collection batch authorized successfully"
}