@seamapi/http - v2.1.0
    Preparing search index...

    Type Alias Webhook

    Represents a webhook that enables you to receive notifications of events. When you create a webhook, specify the endpoint URL at which you want to receive events and the set of event types that you want to receive.

    type Webhook = {
        event_types?: string[];
        secret?: string;
        url: string;
        webhook_id: string;
    }
    Index
    event_types?: string[]

    Types of events that the webhook should receive.

    secret?: string

    Secret associated with the webhook.

    url: string

    URL for the webhook.

    webhook_id: string

    ID of the webhook.