WebhookEndpointRegistrationRequest
partnerPartner slug (e.g., 'northstar_media'). Partner will be created automatically if it doesn't exist.
urlThe URL where you want to receive webhook notifications. This should be a publicly accessible HTTPS endpoint that can accept POST requests.
event_typeThe type of subscription event you want to receive. Choose one event type per registration. To receive multiple event types, register your URL separately for each event type.
WebhookEndpointRegistrationResponse
endpoint_idA unique identifier for your registered webhook endpoint. Save this ID if you need to update or manage this endpoint later.
partnerYour partner identifier (same as the one you provided in the request)
event_typeThe event type this endpoint is registered to receive
urlThe webhook URL where you'll receive notifications
createdIndicates whether this is a new endpoint registration (true) or an update to an existing endpoint (false)
SubscriptionCreatedPayload
event_idUnique identifier for this event (e.g. evt_abc123). Stable across delivery retries — use this to deduplicate.
event_timestampRFC 3339 date-time in UTC when this event was created. Stable across delivery retries.
event_typeEvent type. Always "subscription.created" for this payload.
bundled_user_idBundled user identifier
bundled_usernameBundled-issued email address
first_nameUser's first name
last_nameUser's last name
emailUser's email address
passwordTemporary password for the account
date_of_birthUser's date of birth (YYYY-MM-DD)
countryUser's country code (e.g., 'US')
languageUser's language code (e.g., 'en')
Subscription details
SubscriptionUpdatedPayload
event_idUnique identifier for this event (e.g. evt_abc123). Stable across delivery retries — use this to deduplicate.
event_timestampRFC 3339 date-time in UTC when this event was created. Stable across delivery retries.
event_typeEvent type. Always "subscription.updated" for this payload.
bundled_usernameBundled-issued email address
Subscription update details
SubscriptionCancelledPayload
event_idUnique identifier for this event (e.g. evt_abc123). Stable across delivery retries — use this to deduplicate.
event_timestampRFC 3339 date-time in UTC when this event was created. Stable across delivery retries.
event_typeEvent type. Always "subscription.cancelled" for this payload.
bundled_usernameBundled-issued email address
Subscription cancellation details
SubscriptionRenewedPayload
event_idUnique identifier for this event (e.g. evt_abc123). Stable across delivery retries — use this to deduplicate.
event_timestampRFC 3339 date-time in UTC when this event was created. Stable across delivery retries.
event_typeEvent type. Always "subscription.renewed" for this payload.
bundled_usernameBundled-issued email address
Subscription renewal details
