Update a webhook endpoint
Updates the specified webhook endpoint by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
-
The ID of the desired webhook endpoint (e.g.,
whe_KPGc5vEZdvoETu39BNwu2Z
).
Body
-
description string
A human-readable description of the webhook endpoint.
-
url string
The URL of the webhook endpoint.
PUT /api/v1/webhook_endpoints/{webhook_endpoint_id}
curl \
-X PUT https://api.1099policy.com/api/v1/webhook_endpoints/{webhook_endpoint_id} \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/my/webhook/endpoint","description":"A webhook endpoint for the example application."}'
Request example
{
"url": "https://example.com/my/webhook/endpoint",
"description": "A webhook endpoint for the example application."
}
Response examples (200)
{
"created": "2024-01-06T05:30:39.373Z",
"description": "string",
"id": "whe_KPGc5vEZdvoETu39BNwu2Z",
"secret": false,
"url": "https://example.com/my/webhook/endpoint"
}