v1

latestOpenAPI 3.0.32026-08-0613775357.6 KB
webhooks

List webhooks

Lists all the webhooks for your organization.

get/webhooks

Response

Retrieves a paginated list of all webhooks for your organization. If no webhooks are found, the response body is blank. You can also get a list with deleted options by adding the with_deleted=true parameter.

Example response

{
  "data": [
    {
      "id": 123456,
      "url": "https://hooks.example.com/process_webhooks",
      "status": "active",
      "event_type": "project.created",
      "organization_id": 1
    }
  ],
  "paging": {
    "per_page": 100,
    "page": 1,
    "previous": "/api/v1/users?per_page=1000&page=1",
    "self": "/api/v1/users?per_page=1000&page=2",
    "next": "/api/v1/users?per_page=1000&page=3"
  }
}