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

    Interface EventNotificationTargetConfigurationInput

    Webhook target configuration accepted by bucket notification tools.

    interface EventNotificationTargetConfigurationInput {
        customHeaders?:
            | Record<string, string>
            | EventNotificationCustomHeaderInput[];
        hmacSha256SigningSecret?: string;
        targetType: string;
        url: string;
    }
    Index
    customHeaders?: Record<string, string> | EventNotificationCustomHeaderInput[]

    Optional custom headers sent to the notification target.

    hmacSha256SigningSecret?: string

    Optional HMAC signing secret used by B2 for webhook payloads.

    targetType: string

    B2 target type, currently webhook-style endpoints for public tools.

    url: string

    HTTPS endpoint receiving notification events.