docs/interfaces/management.Management.GetRefreshTokensRequestParameters.html
{ * 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;
}
user_idclient_id?from?take?fields?include_fields?
user_id: string
ID of the user whose refresh tokens to retrieve. Required.
Optionalclient_idclient_id?: string | null
Filter results by client ID. Only valid when user_id is provided.
Optionalfromfrom?: 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.
Optionaltaketake?: number | null
Number of results per page. Defaults to 50.
Optionalfieldsfields?: 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_fieldsinclude_fields?: boolean | null
Whether specified fields are to be included (true) or excluded (false).
Member Visibility
ThemeOSLightDark