Retrieves logs of rules used to process a given bill, including information on what values each rule altered
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 |
|---|---|---|---|
| billId | The bill to retrieve logs for | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
BillImportRuleLogResponseV202604
| Property | Description | Type | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| billProcessingHash | A unique value used to identify a set of rules being executed for a bill | string (uuid) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| executedRules | The set of rules executed for a bill | BillImportRuleLogExecutionDataV202604[] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
BillImportRuleLogExecutionDataV202604 properties
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example Response
[
{ "billProcessingHash": "string", "executedRules": [
{ "billImportRule": {}, "executionOrder": 1, "executionTime": "2026-06-12", "logData": {}
}
]
}
]