Skip to main content
DELETE
/
orgs
/
webhooks
Delete a webhook
curl --request DELETE \
  --url https://v2.prod.halliday.xyz/orgs/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "prod-workflows"
}
'
{
  "errors": [
    {
      "kind": "other",
      "message": "Invalid API key"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
label
string
required
Example:

"prod-workflows"

Response

Webhook deleted successfully (empty body)