Logs
Retrieve Logs
Example
Retrieve a single log using its id.
List Logs
Example
When you want to retrieve list of logs, your data property on the result will always be an array even if you don't have any log entry.
The results are always ordered by creation timestamp in reverse chronological order.
Pagination
If the has_more property on the pagination object is set to true, you know there are more logs in the database that have not been returned to you. The pagination object also has a page property indicating your current offset and a limit property. The total_count property in pagination returns the total number of logs in the database.
By default, the page is set to 1 and the limit is 10.
If we want to query for logs 11 - 20, we would request page 2 with a query parameter.
Query Parameters
resource_id string
The unique identifier of the resource, for example, to get all logs associated to a parcel, pass the ID of the parcel.