v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Webhooks

List webhooks

Fetch a list of all webhooks.

get/api/v2/webhooks

Response

Webhooks response

_linksobject required

The location and content type of related resources

Example response

{
  "items": [
    {
      "_id": "57be1db38b75bf0772d11384",
      "name": "Example hook",
      "url": "http://www.example.com",
      "secret": "frobozz",
      "statements": [
        {
          "resources": [
            "proj/*:env/*;qa_*:/flag/*"
          ],
          "actions": [
            "*"
          ],
          "effect": "allow"
        }
      ],
      "on": true,
      "tags": [
        "examples"
      ],
      "_access": {
        "denied": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ],
        "allowed": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ]
      }
    }
  ]
}