@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2NotificationTargetConfiguration

    Webhook target configuration for B2 event notifications.

    interface B2NotificationTargetConfiguration {
        customHeaders?: B2NotificationCustomHeader[];
        hmacSha256SigningSecret?: string;
        targetType: string;
        url: string;
    }
    Index
    customHeaders?: B2NotificationCustomHeader[]

    Optional custom headers included with notification callbacks.

    hmacSha256SigningSecret?: string

    Optional HMAC signing secret for webhook payload validation.

    targetType: string

    Notification target type, currently webhook.

    url: string

    Destination URL for notification callbacks.