GET /api/v3/activity/bill

Retrieves bill IDs that were created or modified since a specified date

GetBillActivityV3 Permissions: BillsAndBatches (View)
Use this endpoint to detect bill changes for integration synchronization. Returns bill IDs with their last-modified timestamps. Defaults to bills modified since yesterday at the current time if no date is provided. 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.

Query Parameters

Name Description Type Required
date Cutoff datetime; returns bills created or modified after this time. 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 Unique numeric identifier of the bill that was created or modified integer (int32)
reason Reason the bill appeared in the activity feed: “created” or “modified” string
Example Response application/json
[
  {    "id": 1,    "reason": "string"
  }
]