Identity and Access Management API, gRPC: RefreshTokenService.List
List subjects Refresh Tokens.
gRPC request
rpc List (ListRefreshTokensRequest) returns (ListRefreshTokensResponse)
ListRefreshTokensRequest
{
"subjectId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
subjectId |
string |
pageSize |
int64 The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters refresh tokens listed in the response. The expression must specify:
|
ListRefreshTokensResponse
{
"refreshTokens": [
{
"id": "string",
"clientInstanceInfo": "string",
"clientId": "string",
"subjectId": "string",
"createdAt": "google.protobuf.Timestamp",
"expiresAt": "google.protobuf.Timestamp",
"lastUsedAt": "google.protobuf.Timestamp",
"protectionLevel": "ProtectionLevel"
}
],
"nextPageToken": "string"
}
Field |
Description |
refreshTokens[] |
List of Refresh Tokens |
nextPageToken |
string This token allows you to get the next page of results for list requests. If the number of results |
RefreshToken
Field |
Description |
id |
string Refresh Token id. |
clientInstanceInfo |
string Information about the app for which the Refresh Token was issued. |
clientId |
string The OAuth client identifier for which the Refresh Token was issued. |
subjectId |
string The subject identifier for whom the Refresh Token was issued. |
createdAt |
Refresh token creation time. |
expiresAt |
Refresh token expiration time. |
lastUsedAt |
Timestamp for the last authentication using this Refresh Token. |
protectionLevel |
enum ProtectionLevel Protection level of the refresh token. It shows whether DPOP was used to protect the Refresh Token and and the level of security of the storage used for the DPOP key.
|