Interface WebhookVerificationResult

Result of webhook signature verification.

interface WebhookVerificationResult {
    valid: boolean;
    error?: string;
}

Properties

Properties

valid: boolean

Whether the webhook signature is valid.

error?: string

Error message if verification failed.