You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Callback URL to receive status updates from Bandwidth. When a webhook subscription is registered with Bandwidth under a given account ID, it will be used to send status updates for all requests submitted under that account ID.
shared_secret_key
str
An ASCII string submitted by the user as a shared secret key for generating an HMAC header for callbacks.
[optional]
Example
frombandwidth.models.webhook_subscription_request_schemaimportWebhookSubscriptionRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of WebhookSubscriptionRequestSchema from a JSON stringwebhook_subscription_request_schema_instance=WebhookSubscriptionRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(WebhookSubscriptionRequestSchema.to_json())
# convert the object into a dictwebhook_subscription_request_schema_dict=webhook_subscription_request_schema_instance.to_dict()
# create an instance of WebhookSubscriptionRequestSchema from a dictwebhook_subscription_request_schema_from_dict=WebhookSubscriptionRequestSchema.from_dict(webhook_subscription_request_schema_dict)