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

ParameterDescription
ActionsThe actions for which to return permissions on a member. This field is optional.
FileThe file for which you want to see members.
Include InheritedWhether to include members who only have access from a parent shared folder. The default for this field is True.

Advanced Parameters

ParameterDescription
Dropbox API Path RootThe 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 AdminSpecify a team administrator ID to perform this action with administrator privileges.Note: A team access token with the team_data.member scope is required to use this parameter.
Dropbox API Select UserSpecify 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.
LimitNumber of members to return max per query. The default for this field is 100.

Example Output

{
	"value": {
		"groups": [
			{
				"access_type": {
					".tag": "editor"
				},
				"group": {
					"group_id": "g:e2db7665347abcd600000000001a2b3c",
					"group_management_type": {
						".tag": "user_managed"
					},
					"group_name": "Test group",
					"group_type": {
						".tag": "user_managed"
					},
					"is_member": false,
					"is_owner": false,
					"member_count": 10,
					"same_team": true
				},
				"is_inherited": false,
				"permissions": []
			}
		],
		"invitees": [
			{
				"access_type": {
					".tag": "viewer"
				},
				"invitee": {
					".tag": "email",
					"email": "jessica@example.com"
				},
				"is_inherited": false,
				"permissions": []
			}
		],
		"users": [
			{
				"access_type": {
					".tag": "owner"
				},
				"is_inherited": false,
				"permissions": [],
				"platform_type": {
					".tag": "unknown"
				},
				"time_last_seen": "2016-01-20T00:00:00Z",
				"user": {
					"account_id": "dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc",
					"display_name": "Robert Smith",
					"email": "bob@example.com",
					"same_team": true,
					"team_member_id": "dbmid:abcd1234"
				}
			}
		]
	}
}

Workflow Library Example

List File Members with Dropbox and Send Results Via Email

Preview this Workflow on desktop