v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
API Logs

List API Log

Get the list of all logs within the selected workspace.\ Optionally filter by date, page, and # of items per page.

get/public/v1/logs

Query parameters

sincestring

Determines a point in time from which logs should be fetched. Either a specific ISO 8601 datetime or a relative identifier such as "-90d" (for past 90 days).

tostring

Determines a point in time from which logs should be fetched. Either a specific ISO 8601 datetime or a relative identifier such as "-10d" (for past 10 days) or a special "now" value.

countinteger

The amount of items on each page. The total number of accessible items (count × page) must not exceed 10,000.

pageinteger

Returns page of the results by number. The total number of accessible items (count × page) must not exceed 10,000.

statusesApiLogStatusEnum[]

Returns only the predefined status codes.

methodsApiLogMethodEnum[]

Returns only the predefined HTTP methods. Allows GET, POST, PUT, PATCH, and DELETE.

searchstring

Returns the results containing a string.

environment_type'PRODUCTION' | 'SANDBOX'

Returns logs for production/sandbox.

Response

OK

Example response

{
  "results": [
    {
      "id": "AXyDkCYFy9B65Q_E9BY3",
      "url": "/public/v1/documents",
      "status": 200,
      "request_time": "2021-10-15T10:59:22.852",
      "response_time": "2021-10-15T10:59:23.152"
    }
  ]
}