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>"
}
]
}Required capabilities:
workflowOrchestrationACL:READ
Get information about every run of a trigger. This includes timing information and a reference to the started execution (or an explanation as to why it failed). The returned items are sorted by fireTime in descending order (newest first), followed by externalId in ascending order.
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>"
}
]
}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.
Identifier for a trigger. Must be unique for the project. No trailing or leading whitespace and no null characters allowed.
255The maximum number of results to return.
1 <= x <= 1000Cursor 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.
"4zj0Vy2fo0NtNMb229mI9r1V3YG5NBL752kQz1cKtwo"
A list of runs of the trigger
Show child attributes
Was this page helpful?