Hi UiPath community,
I’m working on a workflow where I need an asset in Orchestrator, I want to prevent the hassle of manually creating this asset during deployment, so I want the process to automatically create text assets based on an instruction coming from an excel.Could anyone advise on:
Thank you
ppr
(Peter Preuss)
October 30, 2024, 11:53am
3
have a look at the following approaches:
A tool to help Orchestrator administrators to perform bulk operations on entities like Assets, Environments, Machines, Processes, Users, Robots, Organization Units, Folders, Queues and Packages.
The UiPath Documentation Portal - the home of all our valuable information. Find here everything you need to guide you in your automation journey in the UiPath ecosystem, from complex installation guides to quick tutorials, to practical business...
ppr
(Peter Preuss)
October 30, 2024, 2:04pm
5
@Eric_Alvarado
we already mentioned above
Hello,
You can use the Orchestrator Http Request Activity as seen the image below:
Lets say you want to create a text asset with asset name SpeedValue
and value of 50
in the Shared
folder of your orchestrator then you will do this:
orchestratorFolderName
= Shared
payLoad = "{
""Name"": ""SpeedValue"",
""ValueType"": ""Text"",
""ValueScope"": ""Global"",
""StringValue"": ""50"",
""RobotValues"": []
}"
Method = Post
Relative Endpoint = "/odata/Assets"
just incase, I have also attached a sample workflow.
CreateAnAssetIfNotExisting.xaml (17.0 KB)
Cheers
system
(system)
Closed
November 14, 2024, 7:58pm
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.