Get a list of report distribution logs
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. |
Query Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| includeInProgress | Option to include in progress distributions. False by default | boolean | Optional |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
ReportDistributionLogResponse
| Property | Description | Type | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beginDate | The date and time the report distribution was started | string (date-time) | ||||||||||||||||||||||||||||||
| endDate | The date and time the report distribution was completed | string (date-time) | ||||||||||||||||||||||||||||||
| numberOfRecipients | The number of unique recipients for the report If a user is a member of multiple groups assigned to the report distribution they will only be counted once | integer (int32) | ||||||||||||||||||||||||||||||
| reportDistribution | ReportDistributionChild | |||||||||||||||||||||||||||||||
|
ReportDistributionChild properties
|
||||||||||||||||||||||||||||||||
| reportDistributionLogId | The report distribution log identifier | integer (int32) | ||||||||||||||||||||||||||||||
| status | The status of the report distribution Possible values - In Progress, Complete, Not sent, Some reports not sent | string | ||||||||||||||||||||||||||||||
Example Response
[
{ "beginDate": "2026-03-30", "endDate": "2026-03-30", "numberOfRecipients": 1, "reportDistribution": { "createdByUser": {}, "reportCode": "string", "reportDistributionId": 1, "reportDistributionName": "string"
}, "reportDistributionLogId": 1, "status": "string"
}
]