> ## 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 File Members

[list\_file\_members](https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members)

scope: `sharing.read`

Use to obtain the members who have been invited to a file, both inherited and uninherited members.

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                      |
  | ----------------- | ---------------------------------------------------------------------------------------------------------------- |
  | Actions           | The actions for which to return permissions on a member. This field is optional.                                 |
  | File              | The file for which you want to see members.                                                                      |
  | Include Inherited | Whether to include members who only have access from a parent shared folder. The default for this field is True. |
</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 Admin | Specify a team administrator ID to perform this action with administrator privileges.<br /><br />**Note**: A team access token with the `team_data.member` scope is required to use this parameter.   |
  | 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. |
  | Limit                    | Number of members to return max per query. The default for this field is 100.                                                                                                                         |
</div>

## Example Output

```json theme={"dark"}
{
	"users": [
		{
			"access_type": {
				".tag": "<string>"
			},
			"is_inherited": true,
			"user": {
				"account_id": "<string>",
				"email": "<string>",
				"display_name": "<string>",
				"same_team": false
			}
		}
	],
	"groups": [],
	"invitees": []
}
```

## Workflow Library Example

[List File Members with Dropbox and Send Results Via Email](https://library.blinkops.com/workflows/list-file-members-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-file-members-with-dropbox-and-send-results-via-email/canvas" />
</div>
