nylas
    Preparing search index...

    Interface CreateWebhookRequest

    Class representation of a Nylas create webhook request.

    interface CreateWebhookRequest {
        description?: string;
        notificationEmailAddresses?: string[];
        triggerTypes: WebhookTriggers[];
        webhookUrl: string;
    }
    Index

    Properties

    description?: string

    A human-readable description of the webhook destination.

    notificationEmailAddresses?: string[]

    The email addresses that Nylas notifies when a webhook is down for a while.

    triggerTypes: WebhookTriggers[]

    List of events that triggers the webhook.

    webhookUrl: string

    The url to send webhooks to.