Runs
Get a trigger run
Retrieve details about a specific trigger run. {trigger-name} can be replaced with wildcard - if you only know the run-id.
get/triggers/{trigger-name}/runs/{run-id}
Response
OK
Example response
{
"id": "run_063001H1Y9BH9FJNHZNHGH4NVD1RXQ",
"created_at": "2023-03-25T17:43:23.654278298Z",
"action": {
"url": "https://example.com/my-own-endpoint",
"http_method": "POST",
"timeout_s": 6.2,
"type": "webhook",
"retry": {
"max_num_attempts": 5,
"delay_s": 10,
"type": "simple"
}
},
"status": "succeeded",
"payload": {
"body": "My Message Payload",
"content_type": "application/json; charset=utf-8",
"headers": {
"X-Custom-Header": "Custom-Value"
}
}
}