1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-02 23:27:50 +02:00
Vitaly the Alpaca (bot) 4343adce62 Main build (Jenkins)
2024-10-15 10:07:27 +03:00

1009 B

sidebar_position
sidebar_position
4

Add users to folder

Grants external users access to the directory

Function AddUsersToFolder(Val Token, Val FolderID, Val EmailAddresses, Val ViewOnly = True) Export

Parameter CLI option Type Description
Token --token String Token
FolderID --folder String ID of the public catalog (shared folder ID)
EmailAddresses --emails String, Array of String List of email addresses of users being added
ViewOnly --readonly Boolean Prohibits file editing for the external user

Returns: Undefined - empty response


    Token  = "sl.B-uquz3utwEHepKzyqLBfnFvmY1EWTYDus5LDjT5ux5srp9PJRtr7CvMv20nVl2rRGC3K4J_X5...";
    Email  = "h5bk6ft62s@privaterelay.appleid.com";
    Folder = "11727195745"; // shared_folder_id

    Result = OPI_Dropbox.AddUsersToFolder(Token, Folder, Email, False);
{}