Webhook
Update an outbound webhook
Updates an existing outbound webhook by its unique ID.
put/webhook/{webhook_id}
Path parameters
webhook_idstring uuid required
An opaque identifier of a webhook.
Request body
Example request
{
"name": "my-webhook",
"events": [
"workflow-completed",
"job-completed"
],
"url": "https://example.com/hooks/circleci",
"signing-secret": "super-secret-value",
"verify-tls": true
}Response
A webhook.
Example response
{
"id": "8d75ff3a-2b45-4d6e-9f1b-3c1e6f2a7b90",
"name": "my-webhook",
"url": "https://example.com/hooks/circleci",
"verify_tls": true,
"signing_secret": "********",
"events": [
"workflow-completed",
"job-completed"
],
"scope": {
"id": "39723015-b399-4601-9ff6-bd1bfbed8fa8",
"type": "project"
}
}