Member Junction
    Preparing search index...

    The decoded, verified claims of a Vonage webhook JWT (the subset we read).

    interface VonageJwtClaims {
        application_id?: string;
        exp?: number;
        iat?: number;
        [claim: string]: unknown;
    }

    Indexable

    • [claim: string]: unknown

      Any other JWT claims, typed without widening to any.

    Index

    Properties

    application_id?: string

    The application id the JWT was issued for.

    exp?: number

    Expiry epoch seconds (verified against nowSeconds when present).

    iat?: number

    Issued-at epoch seconds.