/v1/workspaces/{workspace_id}/webhooksAuthList webhooks for the workspace (paginated, newest first, secrets masked)
Path parameters
workspace_id*stringQuery parameters
cursorstringOpaque cursor from the previous response's `pagination.next_cursor`.
limitintegerPage size. Defaults to 20, capped at 100.
Response · 200 Page of webhooks with a pagination cursor.
data*arraypagination*objectnext_cursor*stringhas_more*booleanExample
Request
GET /v1/workspaces/{workspace_id}/webhooks
Authorization: Bearer YOUR_TOKENResponse
{
"data": [
{
"id": "string",
"workspace_id": "string",
"url": "string",
"active": false,
"failure_count": 0,
"last_status_code": 0,
"last_attempt_at": "string",
"auto_disabled_at": "string",
"first_failure_at": "string",
"created_at": "string"
}
],
"pagination": {
"next_cursor": "string",
"has_more": false
}
}