sharing.read
Return the list of all shared folders the current user has access to.
Basic Parameters
| Parameter | Description |
|---|---|
| Actions | A list of FolderActions corresponding to FolderPermissions that should appear in the response’s SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder.This field is optional. |
| Limit | The maximum number of results to return per request. The default for this field is 1000. |
Advanced Parameters
| Parameter | Description |
|---|---|
| Dropbox API Path Root | The path of the folder in the user’s Dropbox to perform this action from. Can be the path to the user’s home folder, a specific root ID, or a custom namespace. |
| Dropbox API Select User | Specify a team member ID to perform this action on behalf of that specific team member. Note: A team access token with the team_data.member scope is required to use this parameter. |
Example Output
{
"entries": [
{
"access_type": {
".tag": "<string>"
},
"is_inside_team_folder": false,
"is_team_folder": false,
"path_display": "<string>",
"path_lower": "<string>",
"name": "<string>",
"policy": {
"acl_update_policy": {
".tag": "<string>"
},
"shared_link_policy": {
".tag": "<string>"
},
"viewer_info_policy": {
".tag": "<string>"
}
},
"preview_url": "<string>",
"shared_folder_id": "<string>",
"time_invited": "<string>",
"access_inheritance": {
".tag": "<string>"
}
},
{
"access_type": {
".tag": "<string>"
},
"is_inside_team_folder": false,
"is_team_folder": false,
"name": "<string>",
"policy": {
"acl_update_policy": {
".tag": "<string>"
},
"shared_link_policy": {
".tag": "<string>"
},
"viewer_info_policy": {
".tag": "<string>"
}
},
"preview_url": "<string>",
"shared_folder_id": "<string>",
"time_invited": "<string>",
"access_inheritance": {
".tag": "<string>"
}
}
]
}