jira.js
    Preparing search index...

    Interface WebhookPayloadBase

    What every delivery carries, whatever the event.

    interface WebhookPayloadBase {
        matchedWebhookIds?: number[];
        timestamp: number;
        webhookEvent: WebhookEvent;
    }

    Hierarchy (View Summary)

    Index
    matchedWebhookIds?: number[]

    The registrations this delivery answered. Present only on a webhook registered through the REST API, where one event can match several of them at once.

    timestamp: number

    When Jira raised the event, in milliseconds since the epoch.

    webhookEvent: WebhookEvent

    The event, and the field to switch on.