v1

latestOpenAPI 3.0.02026-08-06165119238.1 KB
Webhook

Update a webhook

Updates a webhook.

put/v3/webhooks/{id}

Path parameters

idstring required

Unique Webhook identifier

Request body

webhook_idstring
labelstring
methodstring
targetstring

Example request

{
  "webhook_id": "01234567890ABCD",
  "label": "Test webhook",
  "triggers": [
    "user.create",
    "user.delete"
  ],
  "method": "POST",
  "target": "http://localhost:9999"
}

Response

OK