v1
latestOpenAPI 3.0.1MIT2026-07-26336777.7 KBUpdate an existing webhook configuration. Use this to rotate the event signer, change the destination endpoint, or adjust the subscribed event types.
put/webhook/{webhookConfigId}
Path parameters
webhookConfigIdstring required
Identifier of the webhook configuration to update
Headers
Idempotency-Keystring
A unique key for making the request idempotent. Must match pattern: ^[a-zA-Z0-9\-_:\.]+$. See Idempotent Requests for more details.
Request body
Example request
{
"eventSigner": "secret_key",
"endpoint": "https://your-webhook-endpoint.com/webhook",
"subscribedEventTypes": [
"intent.created",
"intent.success",
"intent.failed",
"intent.refunded",
"intent.checkout_opened",
"subscription.trialing",
"subscription.cycle_charged"
]
}Response
Webhook configuration updated successfully. No content is returned.