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.
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.
Organization API key as a Bearer token (postify_live_…).
In: header
Path Parameters
Webhook endpoint id.
1 <= lengthRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Partial update — at least one field is required.
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X PATCH "https://example.com/v1/webhook-endpoints/string" \ -H "Content-Type: application/json" \ -d '{}'{ "id": "string", "url": "string", "event_types": [ "post.published" ], "enabled": true, "auto_disabled_at": "2019-08-24T14:15:22Z", "consecutive_failures": -9007199254740991, "created_at": "2019-08-24T14:15:22Z"}Create a webhook endpoint POST
Registers an HTTPS endpoint for event deliveries. The URL is validated against SSRF at creation AND re-validated at every delivery (loopback, private-network, link-local, and cloud-metadata addresses are rejected — 400 `validation_failed`). The response includes the Standard-Webhooks signing secret exactly once. Endpoint creation counts against the plan's `integrations` quota.
Delete a webhook endpoint DELETE
Removes the endpoint and its delivery history. Deliveries stop immediately; this cannot be undone.
