Apex
CloudFiles Client
Get Resource Details
this apex method retrieves resource details from external storage it is intended for scenarios that require programmatic access and assumes prior familiarity with the docid\ ue5s2y9qglsceiqd0serc flow action global static list\<resource> execute(list\<flowinput> inputs) parameters global class flowinput { @invocablevariable(label='resource id') global string resourceid; @invocablevariable(label='resource type') global string resourcetype; @invocablevariable(label='resource path') global string resourcepath; @invocablevariable(label='library') global string library; @invocablevariable(label='drive id') global string driveid; } return type list of docid\ mr7u7qdhigoasucpf nlr objects example this example demonstrates a scenario where the exact folder id is unknown, but the folder path is available in such cases, you can use this approach to retrieve the corresponding folder id cldfs getresource flowinput flowinput = new cldfs getresource flowinput(); flowinput resourcetype = 'folder'; flowinput resourcepath = '/account/test account'; flowinput library = 'sharepoint'; flowinput driveid = 'b!lu5xssz3m0kne xg9gsvb6w17ythdupeoqgfcm 1nhgn0yfpelmfsoku6fu5wwai'; list\<cldfs resource> resources = cldfs getresource execute(new list\<cldfs getresource flowinput>{flowinput});