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

    Interface GetRefreshTokensRequestParameters

    {
    * user_id: "user_id",
    * client_id: "client_id",
    * from: "from",
    * take: 1,
    * fields: "fields",
    * include_fields: true
    * }
    interface GetRefreshTokensRequestParameters {
        user_id: string;
        client_id?: string | null;
        from?: string | null;
        take?: number | null;
        fields?: string | null;
        include_fields?: boolean | null;
    }
    Index

    Properties

    user_id: string

    ID of the user whose refresh tokens to retrieve. Required.

    client_id?: string | null

    Filter results by client ID. Only valid when user_id is provided.

    from?: string | null

    An opaque cursor from which to start the selection (exclusive). Expires after 24 hours. Obtained from the next property of a previous response.

    take?: number | null

    Number of results per page. Defaults to 50.

    fields?: string | null

    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 | null

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