v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List webhooks

List webhooks

get/webhooks

Response

The list of created webhooks

idstring

The id of the webhook

target_urlstring

The target url of the webhook

event_type'issue.open.created' | 'issue.snoozed' | 'issue.ignored.manual' | 'ci.gate.failed' | 'issue.closed' | 'ci.gate.passed' | 'issue.sla.breached' | 'zen.attack' | 'zen.attack_wave' | 'zen.outbound.discovered' | 'scan.image.finished' | 'issue.unignored' | 'issue.severity.changed.manual' | 'configuration_issue.detected'

The event type of the webhook

health_status'unknown' | 'failing' | 'success'

The health status of the webhook

latest_http_status_codeinteger

The latest http status code of the webhook

Example response

[
  {
    "id": 1,
    "target_url": "https://example.com/webhook",
    "event_type": "issue.open.created",
    "health_status": "success",
    "latest_http_status_code": 200
  },
  {
    "id": 2,
    "target_url": "https://example.com/webhook",
    "event_type": "issue.snoozed",
    "health_status": "failing",
    "latest_http_status_code": 400
  }
]