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

    Interface ListDeviceCredentialsRequestParameters

    {}
    
    interface ListDeviceCredentialsRequestParameters {
        page?: number;
        per_page?: number;
        include_totals?: boolean;
        fields?: string;
        include_fields?: boolean;
        user_id?: string;
        client_id?: string;
        type?: Management.DeviceCredentialTypeEnum;
    }
    Index

    Properties

    page?: number

    Page index of the results to return. First page is 0.

    per_page?: number

    Number of results per page. There is a maximum of 1000 results allowed from this endpoint.

    include_totals?: boolean

    Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

    fields?: string

    Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.

    include_fields?: boolean

    Whether specified fields are to be included (true) or excluded (false).

    user_id?: string

    user_id of the devices to retrieve.

    client_id?: string

    client_id of the devices to retrieve.

    Type of credentials to retrieve. Must be public_key, refresh_token or rotating_refresh_token. The property will default to refresh_token when paging is requested