Skip to main content
GET
JavaScript

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

A cursor token for pagination. Use the next_cursor from the previous response to fetch the next page of results. Treat it as opaque.

limit
string

The number of runs to return per page, between 1 and 50. Defaults to 20. Values outside the range are clamped, and a non-numeric value falls back to 20.

Pattern: ^\d+$
status
string

A comma-separated list of run statuses to filter on, e.g. PROCESSED,ERROR.

template_id
string

A comma-separated list of Automation Template ids to filter on.

start_date
string

An inclusive lower bound on created_at, as an ISO 8601 date or timestamp (e.g. 2026-08-18 or 2026-08-18T20:06:36.259Z). Any other format returns 400.

end_date
string

An inclusive upper bound on created_at, in the same format as start_date.

Response

A page of Automation runs.

A page of Automation runs.

runs
AutomationRunListItem · object[]
required
next_cursor
string

Pass back as cursor to fetch the next page. Absent on the last page.