Dropbox

Links

    Dropbox API

    Getting access, Developing, Testing

    Back to Dropbox

    Sharing - Relinquish Folder Membership

    The current user relinquishes their membership in the designated shared folder and will no longer have access to the folder. A folder owner cannot relinquish membership in their own folder. This will run synchronously if leave_a_copy is false, and asynchronously if leave_a_copy is true. 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. leave_a_copy: Keep a copy of the folder's contents upon relinquishing membership. properties: shared_folder_id: type: string description: The ID for the shared folder. leave_a_copy: type: boolean description: Keep a copy of the folder's contents upon relinquishing membership. title: Data

    Output

    type: object description: > Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned. 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. complete: The job finished synchronously and successfully. properties: .tag: title: Choice of LaunchEmptyResult type: string enum: - async_job_id - complete 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.