Bitbucket Data Center API Client
    Preparing search index...

    Interface WebhookPayload

    Payload shared by POST /webhooks (create) and PUT /webhooks/{webhookId} (update).

    interface WebhookPayload {
        active?: boolean;
        configuration?: Record<string, unknown>;
        credentials?: WebhookCredentials;
        events: string[];
        name: string;
        sslVerificationRequired?: boolean;
        url: string;
    }
    Index

    Properties

    active?: boolean
    configuration?: Record<string, unknown>
    credentials?: WebhookCredentials
    events: string[]
    name: string
    sslVerificationRequired?: boolean
    url: string