Retrieves all move operation logs for a specific batch
Use this endpoint to view the audit trail of bill move operations for a batch. Each log entry
records when bills were moved into or out of this batch, including the other batch involved
and the user who performed the move. Requires Bills and Batches View permission.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| batchId | Unique numeric identifier of the batch to retrieve logs for | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
BatchLogResponseV202509
| Property | Description | Type | |||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| batchId | The batch identifier | integer (int32) | |||||||||||||||||||||||||||||||||||||||||||||
| billsAddedFromLogs | Logs of bills that were added to this batch from another batch. | TargetBatchLogResponseV202509[] | |||||||||||||||||||||||||||||||||||||||||||||
|
TargetBatchLogResponseV202509 properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
| billsMovedToLogs | Logs of bills that were moved from this batch to another batch. | SourceBatchLogResponseV202509[] | |||||||||||||||||||||||||||||||||||||||||||||
|
SourceBatchLogResponseV202509 properties
|
|||||||||||||||||||||||||||||||||||||||||||||||
Example Response
{ "batchId": 1, "billsAddedFromLogs": [
{ "billIds": [
1
], "createdBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "createdDate": "2026-06-29", "moveOperationId": "string", "sourceBatch": { "batchCode": "string", "batchId": 1
}
}
], "billsMovedToLogs": [
{ "billIds": [
1
], "createdBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "createdDate": "2026-06-29", "moveOperationId": "string", "targetBatch": { "batchCode": "string", "batchId": 1
}
}
]
}
404
Not Found
The requested resource was not found. Verify the ID or path is correct.