List

  • GET
  • /workspaces
  • /:workspace
  • /webhooks

Returns all webhooks in the workspace. Restricted to admins only.

Request

REQUIRED SCOPES
WEBHOOK_INFO
URL PARAMETERS
workspacerequiredstring
The workspace name.

Last modified on Jan 19, 2026

Request example

CURL
curl -X GET "https://api.buddy.works/workspaces/:workspace/webhooks" \ -H "Authorization: Bearer <YOUR-TOKEN>" \ -H "Content-Type: application/json" \

Response

EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/webhooks", "html_url": "https://app.buddy.works/buddy/webhook", "webhooks": [ { "url": "https://api.buddy.works/workspaces/buddy/webhooks/1", "html_url": "https://app.buddy.works/buddy/webhook/1", "id": 1, "target_url": "http://localhost" } ] }