Skip to main content

WebhookUpdateRequest

Request to update a webhook subscription. All fields are optional; only the present ones change. url (if given) must be http/https; events (if given) must be a non-empty list of known event types; status (if given) must be active or disabled. The signing secret cannot be changed via update.

urlstringnullable

New destination URL; if given, must be http or https

Example: https://example.com/webhooks/adbridge
eventsstring[]nullable

New set of subscribed event types; if given, must be a non-empty list

Possible values: [offer.accepted, offer.rejected, optin.completed, invitation.accepted, creative.ready, creative.failed]

statusstringnullable

New subscription status

Possible values: [active, disabled]

Example: active
WebhookUpdateRequest
{
"url": "https://example.com/webhooks/adbridge",
"events": [
"offer.accepted"
],
"status": "active"
}