Skip to main content
GET
/
api
/
v1
/
hooks
/
{hook_id}
/
executions
List Hook Executions
curl --request GET \
  --url https://api.example.com/api/v1/hooks/{hook_id}/executions
{
  "items": [
    {
      "id": "<string>",
      "hook_id": "<string>",
      "trigger_type": "<string>",
      "status": "<string>",
      "actions_executed": 123,
      "error_message": "<string>",
      "duration_ms": 123,
      "execution_context": {},
      "executed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Path Parameters

hook_id
string
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

Paginated list of hook executions.

items
HookExecutionResponse · object[]
required
total
integer
required