Skip to main content
GET
/
workflows
/
triggers
/
{triggerExternalId}
/
history
Python SDK
res = client.workflows.triggers.list_runs("my_trigger", limit=None)
{
  "items": [
    {
      "fireTime": 1,
      "externalId": "<string>",
      "workflowExternalId": "<string>",
      "workflowVersion": "<string>",
      "status": "success",
      "workflowExecutionId": "059edaa4-a17a-4102-910e-2c3591500cce",
      "reasonForFailure": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

triggerExternalId
string
required

Identifier for a trigger. Must be unique for the project. No trailing or leading whitespace and no null characters allowed.

Maximum string length: 255

Query Parameters

limit
integer
default:100

The maximum number of results to return.

Required range: 1 <= x <= 1000
cursor
string

Cursor to use for paging through results. This cursor is returned in the response of a previous request as nextCursor. If not specified, start from the first page of results.

Example:

"4zj0Vy2fo0NtNMb229mI9r1V3YG5NBL752kQz1cKtwo"

Response

A list of runs of the trigger

items
object[]
Last modified on April 23, 2026