Information about a webhook that Bandwidth should send upon the completion of event customer has subscribed to.
Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
account_id | str | [optional] | |
callback_url | str | 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. | |
type | WebhookSubscriptionTypeEnum | [optional] | |
basic_authentication | WebhookSubscriptionBasicAuthentication | [optional] | |
created_date | datetime | [optional] | |
modified_date | datetime | [optional] |
from bandwidth.models.webhook_subscription import WebhookSubscription
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookSubscription from a JSON string
webhook_subscription_instance = WebhookSubscription.from_json(json)
# print the JSON string representation of the object
print(WebhookSubscription.to_json())
# convert the object into a dict
webhook_subscription_dict = webhook_subscription_instance.to_dict()
# create an instance of WebhookSubscription from a dict
webhook_subscription_from_dict = WebhookSubscription.from_dict(webhook_subscription_dict)