← Tools Reference

Trigger.dev

Trigger.dev integration (Developer Tools). Imported from open-connector.

API key6 toolshttps://api.trigger.dev
GET
trigger_dev_list_runs
List Trigger.dev runs with optional status, task, version, and time filters.

/api/v1/runs

12 parameters
ParamTypeRequiredDescription
pageSizeintegeroptionalNumber of runs per page.
pageAfterstringoptionalRun ID to start the next page after.
pageBeforestringoptionalRun ID to start the previous page before.
statusesarrayoptionalStatuses to include in the run list.
taskIdentifiersarrayoptionalTask identifiers to include in the run list.
versionsarrayoptionalWorker versions to include in the run list.
createdFromstringoptionalOnly include runs created at or after this time.
createdTostringoptionalOnly include runs created at or before this time.
createdPeriodstringoptionalRelative created-at period accepted by Trigger.dev, such as 1d.
bulkActionstringoptionalBulk action ID to filter by.
schedulestringoptionalSchedule ID to filter by.
isTestbooleanoptionalWhether to include only test or non-test runs.
GET
trigger_dev_get_run
Retrieve a Trigger.dev run by ID.

/api/v3/runs/{runId}

1 parameter
ParamTypeRequiredDescription
runIdstringrequiredThe Trigger.dev run ID, prefixed with run_.
GET
trigger_dev_get_run_result
Retrieve the execution result for a completed Trigger.dev run.

/api/v1/runs/{runId}/result

1 parameter
ParamTypeRequiredDescription
runIdstringrequiredThe Trigger.dev run ID, prefixed with run_.
POST
trigger_dev_trigger_task
Trigger a Trigger.dev task by task identifier.

/api/v1/tasks/{taskIdentifier}/trigger

4 parameters
ParamTypeRequiredDescription
taskIdentifierstringrequiredThe Trigger.dev task identifier to execute.
payloadstringoptionalAny JSON value accepted by Trigger.dev.
contextstringoptionalAny JSON value accepted by Trigger.dev.
optionsobjectoptionalTrigger.dev run options for a task trigger request.
POST
trigger_dev_cancel_run
Cancel an in-progress Trigger.dev run.

/api/v2/runs/{runId}/cancel

1 parameter
ParamTypeRequiredDescription
runIdstringrequiredThe Trigger.dev run ID, prefixed with run_.
POST
trigger_dev_replay_run
Replay a Trigger.dev run with the same payload and options.

/api/v1/runs/{runId}/replay

1 parameter
ParamTypeRequiredDescription
runIdstringrequiredThe Trigger.dev run ID, prefixed with run_.