curl --request GET \
--url http://localhost:55001/api/orchestration/triggers/{triggerID}/occurrences \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"date": "2023-11-07T05:31:56Z",
"workflowInstanceID": "<string>",
"workflowInstance": {
"workflowID": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": [
{
"stage": 123,
"instanceID": "<string>",
"startedAt": "2023-11-07T05:31:56Z",
"terminatedAt": "2023-11-07T05:31:56Z",
"error": "<string>"
}
],
"terminated": true,
"terminatedAt": "2023-11-07T05:31:56Z",
"error": "<string>"
},
"triggerID": "<string>",
"event": {},
"error": "<string>"
}
]
}
List triggers occurrences
curl --request GET \
--url http://localhost:55001/api/orchestration/triggers/{triggerID}/occurrences \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"date": "2023-11-07T05:31:56Z",
"workflowInstanceID": "<string>",
"workflowInstance": {
"workflowID": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": [
{
"stage": 123,
"instanceID": "<string>",
"startedAt": "2023-11-07T05:31:56Z",
"terminatedAt": "2023-11-07T05:31:56Z",
"error": "<string>"
}
],
"terminated": true,
"terminatedAt": "2023-11-07T05:31:56Z",
"error": "<string>"
},
"triggerID": "<string>",
"event": {},
"error": "<string>"
}
]
}
The access token received from the authorization server in the OAuth 2.0 flow.
The trigger id
List of triggers occurrences
The response is of type object
.