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

    Interface CreatePublicKeyDeviceCredentialRequestContent

    {
    * device_name: "device_name",
    * value: "value",
    * device_id: "device_id"
    * }
    interface CreatePublicKeyDeviceCredentialRequestContent {
        device_name: string;
        value: string;
        device_id: string;
        client_id?: string;
    }
    Index

    Properties

    device_name: string

    Name for this device easily recognized by owner.

    value: string

    Base64 encoded string containing the credential.

    device_id: string

    Unique identifier for the device. Recommend using Android_ID on Android and identifierForVendor.

    client_id?: string

    client_id of the client (application) this credential is for.