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

    Interface PatchClientCredentialResponseContent

    interface PatchClientCredentialResponseContent {
        id?: string;
        name?: string;
        kid?: string;
        alg?: Management.ClientCredentialAlgorithmEnum;
        credential_type?: Management.ClientCredentialTypeEnum;
        subject_dn?: string;
        thumbprint_sha256?: string;
        created_at?: string;
        updated_at?: string;
        expires_at?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    id?: string

    ID of the credential. Generated on creation.

    name?: string

    The name given to the credential by the user.

    kid?: string

    The key identifier of the credential, generated on creation.

    subject_dn?: string

    The X509 certificate's Subject Distinguished Name

    thumbprint_sha256?: string

    The X509 certificate's SHA256 thumbprint

    created_at?: string

    The ISO 8601 formatted date the credential was created.

    updated_at?: string

    The ISO 8601 formatted date the credential was updated.

    expires_at?: string

    The ISO 8601 formatted date representing the expiration of the credential.