Skip to main content

Unpublish folder

Cancels the public access mode for the directory

Function CancelFolderPublication(Val Token, Val FolderID) Export

ParameterCLI optionTypeDescription
Token--tokenStringToken
FolderID--folderStringID of the public catalog (shared folder ID)

Returns: Map Of KeyAndValue - serialized JSON response from Dropbox


Code example
    Token  = "sl.B7rnyEnvxxd-JcTKNUGp-osMJLfqK79ojSqINJc-rtpJlhgC6meGOUa-rM6gZGBAhHWVmrzuqt...";
Folder = "11156736001";

Result = OPI_Dropbox.CancelFolderPublication(Token, Folder);
CurrentStatus = "in_progress";
JobID = Result["async_job_id"];

WHile CurrentStatus = "in_progress" Do
Result = OPI_Dropbox.GetAsynchronousChangeStatus(Token, JobID);
CurrentStatus = Result[".tag"];
OPI_Tools.Pause(3);
EndDo;
CLI command example
    
oint dropbox CancelFolderPublication --token "sl.B6AQWp9MlZlz4iaf41whVKxX9-MXeCiQhPRe4YIRxFmZ3zHsdjmOAatzgaWVhqmlIOvDD6WIUQ..." --folder %folder%

Result
{
".tag": "complete"
}