Back to DropboxSharing - Remove Folder Member
Allows an owner or editor (if the ACL update policy allows) of a shared folder to remove another member.
Apps must have full Dropbox access to use this endpoint.
Input
type: object
properties:
data:
type: object
description: >
shared_folder_id: The ID for the shared folder.
member: The member to remove from the folder.
leave_a_copy: If true, the removed user will keep their copy of the folder
after it's unshared, assuming it was mounted. Otherwise, it will be
removed from their Dropbox. Also, this must be set to false when kicking a
group.
properties:
member:
type: object
description: |
Includes different ways to identify a member of a shared folder.
dropbox_id: Dropbox account, team member, or group ID of member.
email: E-mail address of member.
other: None
properties:
.tag:
title: Choice of MemberSelector
type: string
enum:
- dropbox_id
- email
- other
dropbox_id:
type: string
description: Dropbox account, team member, or group ID of member.
email:
type: string
description: E-mail address of member.
shared_folder_id:
type: string
description: The ID for the shared folder.
leave_a_copy:
type: boolean
description: >-
If true, the removed user will keep their copy of the folder after
it's unshared, assuming it was mounted. Otherwise, it will be removed
from their Dropbox. Also, this must be set to false when kicking a
group.
title: Data
Output
type: object
description: >
Result returned by methods that launch an asynchronous job.
A method who may either launch an asynchronous job, or complete the request
synchronously, can use this union by extending it, and adding a 'complete'
field with the type of the synchronous response.
See :type:`LaunchEmptyResult` for an example.
async_job_id: This response indicates that the processing is asynchronous. The
string is an id that can be used to obtain the status of the asynchronous job.
properties:
.tag:
title: Choice of LaunchResultBase
type: string
enum:
- async_job_id
async_job_id:
type: string
description: >-
This response indicates that the processing is asynchronous. The string is
an id that can be used to obtain the status of the asynchronous job.