Hi,
I have created a form using UiPath Apps and have used entities that I have created.
We need to extract the data from that same as we do it for create form task.
We need to save the data into excel sheet which will contain all the information from the form.
Note:- the form has image upload option also so we need to save the link of the images uploaded in the excel sheet.
Can anyone help me with the solution?
Thanks in advance!!
- Use the UiPath Apps integration to connect your UiPath Apps form to your UiPath Studio process.
- Set up the form submission to trigger the UiPath Studio process.
I assume you’re talking about entities from Data Service, try using Query Entity Records,
remember you will need to import your entity first into Studio
for the image, I believe is stored as base64 so you may need to parse it as a file
Convert.FromBase64String(String) Method (System) | Microsoft Learn
hope it helps.