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

    Interface PostClientCredentialRequestContent

    {
    * credential_type: "public_key"
    * }
    interface PostClientCredentialRequestContent {
        credential_type: Management.ClientCredentialTypeEnum;
        name?: string;
        subject_dn?: string;
        pem?: string;
        alg?: Management.PublicKeyCredentialAlgorithmEnum;
        parse_expiry_from_cert?: boolean;
        expires_at?: string;
    }
    Index

    Properties

    name?: string

    Friendly name for a credential.

    subject_dn?: string

    Subject Distinguished Name. Mutually exclusive with pem property. Applies to cert_subject_dn credential type.

    pem?: string

    PEM-formatted public key (SPKI and PKCS1) or X509 certificate. Must be JSON escaped.

    parse_expiry_from_cert?: boolean

    Parse expiry from x509 certificate. If true, attempts to parse the expiry date from the provided PEM. Applies to public_key credential type.

    expires_at?: string

    The ISO 8601 formatted date representing the expiration of the credential. If not specified (not recommended), the credential never expires. Applies to public_key credential type.