Get User
finspacedata_get_user | R Documentation |
Retrieves details for a specific user¶
Description¶
Retrieves details for a specific user.
Usage¶
finspacedata_get_user(userId)
Arguments¶
userId |
[required] The unique identifier of the user to get data for. |
Value¶
A list with the following syntax:
list(
userId = "string",
status = "CREATING"|"ENABLED"|"DISABLED",
firstName = "string",
lastName = "string",
emailAddress = "string",
type = "SUPER_USER"|"APP_USER",
apiAccess = "ENABLED"|"DISABLED",
apiAccessPrincipalArn = "string",
createTime = 123,
lastEnabledTime = 123,
lastDisabledTime = 123,
lastModifiedTime = 123,
lastLoginTime = 123
)
Request syntax¶
svc$get_user(
userId = "string"
)