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 Root-
Dropbox API Select Admin-
Dropbox API Select User-
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