Get Personal Access Token Metadata
workmail_get_personal_access_token_metadata | R Documentation |
Requests details of a specific Personal Access Token within the WorkMail organization¶
Description¶
Requests details of a specific Personal Access Token within the WorkMail organization.
Usage¶
Arguments¶
OrganizationId
[required] The Organization ID.
PersonalAccessTokenId
[required] The Personal Access Token ID.
Value¶
A list with the following syntax:
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"
)
)