Apex
CloudFiles Client
Update Link Settings
the updatelinksettings apex method allows you to programmatically manage and modify the security policies associated with cloudfiles links global static void updatelinkssettings( list\<types updatelinksettingsinput> inputs, string runas ) parameters inputs list of types updatelinksettingsinput docid\ coanxwj1pchqv875yqict runas email id of the user on whom behalf the function should run if you want to run the action as automation user, supply integrationuser return type this functions doesn't return anything example cldfs updatelinksettings flowinput flowinput = new cldfs updatelinksettings flowinput(); flowinput linkid = '68591442a9a65391d56b7caf'; flowinput isdisabled = false; flowinput allowdownloading = false; flowinput password = 'password123'; cldfs updatelinksettings execute(new list\<cldfs updatelinksettings flowinput>{flowinput});