List Personal Access Tokens
workmail_list_personal_access_tokens | R Documentation |
Returns a summary of your Personal Access Tokens¶
Description¶
Returns a summary of your Personal Access Tokens.
Usage¶
Arguments¶
OrganizationId
[required] The Organization ID.
UserId
The WorkMail User ID.
NextToken
The token from the previous response to query the next page.
MaxResults
The maximum amount of items that should be returned in a response.
Value¶
A list with the following syntax:
list(
NextToken = "string",
PersonalAccessTokenSummaries = list(
list(
PersonalAccessTokenId = "string",
UserId = "string",
Name = "string",
DateCreated = as.POSIXct(
"2015-01-01"
),
DateLastUsed = as.POSIXct(
"2015-01-01"
),
ExpiresTime = as.POSIXct(
"2015-01-01"
),
Scopes = list(
"string"
)
)
)
)