Describe Root Folders
workdocs_describe_root_folders | R Documentation |
Describes the current user's special folders; the RootFolder and the RecycleBin¶
Description¶
Describes the current user's special folders; the RootFolder
and the
RecycleBin
. RootFolder
is the root of user's files and folders and
RecycleBin
is the root of recycled items. This is not a valid action
for SigV4 (administrative API) clients.
This action requires an authentication token. To get an authentication token, register an application with Amazon WorkDocs. For more information, see Authentication and Access Control for User Applications in the Amazon WorkDocs Developer Guide.
Usage¶
Arguments¶
AuthenticationToken
[required] Amazon WorkDocs authentication token.
Limit
The maximum number of items to return.
Marker
The marker for the next set of results. (You received this marker from a previous call.)
Value¶
A list with the following syntax:
list(
Folders = list(
list(
Id = "string",
Name = "string",
CreatorId = "string",
ParentFolderId = "string",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
ModifiedTimestamp = as.POSIXct(
"2015-01-01"
),
ResourceState = "ACTIVE"|"RESTORING"|"RECYCLING"|"RECYCLED",
Signature = "string",
Labels = list(
"string"
),
Size = 123,
LatestVersionSize = 123
)
),
Marker = "string"
)