1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-07 15:20:39 +02:00
OpenIntegrations/docs/en/md/Dropbox/Shared-access-settings/Cancel-folder-publication.md
2024-08-13 15:52:26 +03:00

1.2 KiB

sidebar_position
2

Unpublish folder

Cancels the public access mode for the directory

Function CancelFolderPublication(Val Token, Val FolderID) Export

Parameter CLI option Type Description
Token --token String Token
FolderID --folder String ID of the public catalog (shared folder ID)

Returns: Map Of KeyAndValue - serialized JSON response from Dropbox


  Token  = FunctionParameters["Dropbox_Token"];
  Folder = FunctionParameters["Dropbox_SharedFolder"];
  
  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;
    
  oint dropbox CancelFolderPublication --token "sl.B6AQWp9MlZlz4iaf41whVKxX9-MXeCiQhPRe4YIRxFmZ3zHsdjmOAatzgaWVhqmlIOvDD6WIUQ..." --folder %folder%

{
  ".tag": "complete"
  }