List of a bill IDs that were created or modified since the given date.
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 |
|---|---|---|---|
| date | Created or modified datetime; Defaults to yesterday at the current time | string (date-time) | Optional |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
Activity
| Property | Description | Type |
|---|---|---|
| id | integer (int32) | |
| reason | string |
Example Response
[
{ "id": 1, "reason": "string"
}
]