Retrieves all move operation logs for a specific batch
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 | Batch identifier | 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-03-30", "moveOperationId": "string", "sourceBatch": { "batchCode": "string", "batchId": 1
}
}
], "billsMovedToLogs": [
{ "billIds": [
1
], "createdBy": { "fullName": "string", "userCode": "string", "userId": 1
}, "createdDate": "2026-03-30", "moveOperationId": "string", "targetBatch": { "batchCode": "string", "batchId": 1
}
}
]
}