Skip to content

Update webhook

PUT
/integrations/webhooks/{webhookId}
curl --request PUT \
--url https://shoehorn.example.com/api/v1/integrations/webhooks/example \
--header 'Content-Type: application/json' \
--data '{ "url": "https://example.com", "events": [ "example" ], "active": true }'
webhookId
required
string
Media type application/json
object
url
string format: uri
events
Array<string>
active
boolean
Example generated
{
"url": "https://example.com",
"events": [
"example"
],
"active": true
}

Webhook updated