Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.08 KB

File metadata and controls

24 lines (17 loc) · 1.08 KB

WebhookSubscriptionRequestSchema

Properties

Name Type Description Notes
basicAuthentication TfvBasicAuthentication [optional] [default to undefined]
callbackUrl string 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. [default to undefined]
sharedSecretKey string An ASCII string submitted by the user as a shared secret key for generating an HMAC header for callbacks. [optional] [default to undefined]

Example

import { WebhookSubscriptionRequestSchema } from 'bandwidth-sdk';

const instance: WebhookSubscriptionRequestSchema = {
    basicAuthentication,
    callbackUrl,
    sharedSecretKey,
};

[Back to Model list] [Back to API list] [Back to README]