Back to Node Auth0

Interface GetRefreshTokensRequestParameters

docs/interfaces/management.Management.GetRefreshTokensRequestParameters.html

5.9.11.8 KB
Original Source

Interface GetRefreshTokensRequestParameters

Example

{ * user_id: "user_id", * client_id: "client_id", * from: "from", * take: 1, * fields: "fields", * include_fields: true * }Copy

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_idclient_id?from?take?fields?include_fields?

Properties

user_id

user_id: string

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

Optionalclient_id

client_id?: string | null

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

Optionalfrom

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.

Optionaltake

take?: number | null

Number of results per page. Defaults to 50.

Optionalfields

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.

Optionalinclude_fields

include_fields?: boolean | null

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

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties user_idclient_idfromtakefieldsinclude_fields