> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Shared Folders

[list\_folders](https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders)

scope: `sharing.read`

Return the list of all shared folders the current user has access to.

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                      |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Actions   | A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's SharedFolderMetadata.permissions field describing the actions the authenticated user can perform on the folder.<br />This field is optional. |
  | Limit     | The maximum number of results to return per request. The default for this field is 1000.                                                                                                                                                         |
</div>

## Advanced Parameters

<div className="integrations-table">
  | 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.<br /><br />**Note**: A team access token with the `team_data.member` scope is required to use this parameter. |
</div>

## Example Output

```json theme={"dark"}
{
	"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>"
			}
		}
	]
}
```

## Workflow Library Example

[List Shared Folders with Dropbox and Send Results Via Email](https://library.blinkops.com/workflows/list-shared-folders-with-dropbox-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-shared-folders-with-dropbox-and-send-results-via-email/canvas" />
</div>
