/v1/webhook-endpoints/{id}updateWebhookEndpoint
Update a webhook endpoint. Updates the URL (re-validated through the SSRF gauntlet), the event-type subscription list, and/or `enabled`. Setting `enabled: true` on an auto-disabled endpoint clears its failure ladder and resumes deliveries.
Parameters
idpath · stringrequiredWebhook endpoint id.
Request body
Partial update — at least one field is required.
urlstringoptionalReplacement delivery URL — re-validated through the same SSRF gauntlet as creation.
event_typesarray of "post.published" | "post.failed" | "channel.connected" | "channel.reauth_required" | "delivery.failed"optionalReplacement event-type subscription list.
enabledbooleanoptionalEnable or disable deliveries. Setting `true` on an auto-disabled endpoint clears its failure state and resumes deliveries.
Depth-limited view — the interactive reference has every nested schema.
Responses
200WebhookEndpointThe updated endpoint.
Errors are RFC 9457 problem+json with a stable code and a request_id — each code above links to its own page.
Example
curl -X PATCH https://app.usepostify.com/v1/webhook-endpoints/post_9x2y3z0001 \
-H "Authorization: Bearer postify_live_XXXXXXXXXXXXXXXX" \
-H "Content-Type: application/json" \
-d '{
"enabled": true
}'