Auth0 Node.js SDK - v5.2.0
    Preparing search index...

    Interface GetSigningKeysResponseContent

    interface GetSigningKeysResponseContent {
        kid: string;
        cert: string;
        pkcs7?: string;
        current?: boolean;
        next?: boolean;
        previous?: boolean;
        current_since?: SigningKeysDate;
        current_until?: SigningKeysDate;
        fingerprint: string;
        thumbprint: string;
        revoked?: boolean;
        revoked_at?: SigningKeysDate;
    }
    Index

    Properties

    kid: string

    The key id of the signing key

    cert: string

    The public certificate of the signing key

    pkcs7?: string

    The public certificate of the signing key in pkcs7 format

    current?: boolean

    True if the key is the the current key

    next?: boolean

    True if the key is the the next key

    previous?: boolean

    True if the key is the the previous key

    current_since?: SigningKeysDate
    current_until?: SigningKeysDate
    fingerprint: string

    The cert fingerprint

    thumbprint: string

    The cert thumbprint

    revoked?: boolean

    True if the key is revoked

    revoked_at?: SigningKeysDate