List worker webhook executions
$ handinger workers:webhooks list-executions
GET/api/workers/{workerId}/webhook/executions
List recent webhook delivery attempts for a worker, newest first, paginated 50 per page. Only the worker creator can read execution history.
List worker webhook executions
handinger workers:webhooks list-executions \
--api-key 'My API Key' \
--worker-id t_org_123_w_01HZY2ZJQ8G7K42W2D7WF6V4GM{
"logs": [
{
"id": "whe_01HZY31W2SZJ8MJ2FQTR3M1K9D",
"createdAt": "2019-12-27T18:11:19.117Z",
"durationMs": 0,
"errorMessage": "errorMessage",
"requestStatus": "success",
"responseStatus": 0,
"taskId": "taskId",
"taskTitle": "taskTitle",
"url": "url",
"workerId": "workerId"
}
],
"page": 0,
"pageCount": 0,
"totalCount": 0
}Returns Examples
{
"logs": [
{
"id": "whe_01HZY31W2SZJ8MJ2FQTR3M1K9D",
"createdAt": "2019-12-27T18:11:19.117Z",
"durationMs": 0,
"errorMessage": "errorMessage",
"requestStatus": "success",
"responseStatus": 0,
"taskId": "taskId",
"taskTitle": "taskTitle",
"url": "url",
"workerId": "workerId"
}
],
"page": 0,
"pageCount": 0,
"totalCount": 0
}