Member Junction
    Preparing search index...

    Interface NormalizedSignatureEvent

    A normalized inbound webhook event (DocuSign Connect, Adobe events, …) after the driver has verified the payload signature/HMAC and mapped it onto our vocabulary. Drivers return null from BaseSignatureProvider.ParseWebhookEvent for payloads they don't handle.

    interface NormalizedSignatureEvent {
        externalEnvelopeId: string;
        occurredAt: string;
        raw: unknown;
        status: EnvelopeStatus;
    }
    Index

    Properties

    externalEnvelopeId: string
    occurredAt: string

    ISO timestamp the event occurred.

    raw: unknown

    Original payload, retained for audit.