Apex
CloudFiles Client

Create Datarooms

this function is userd to create datarooms a dataroom is a way to share multiple files & folders with customers and to receive files from them in this article, we will see how to create a dataroom using apex global static list\<dataroom> createdatarooms( list\<types createdataroominput> dataroominputs, string runas ) parameters dataroominputs list of types createdataroominput docid\ sv5exexu3gcoruca700jl 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 list of dataroom docid\ xf4il1xefxnda d4yhc8y objects example list\<cldfs types createdataroominput> dataroominputs = new list\<cldfs types createdataroominput>{ new cldfs types createdataroominput('dataroom 01', 'test dataroom') }; list\<cldfs dataroom> dataroom = cldfs client createdatarooms(dataroominputs, 'integrationuser');