Hi Disha,
Here I suspect the issue is mainly with the body content of the request that is being sent. From the prior screenshot, I can see you are directly passing the parent without any double quotation mark as a part of the text. So what I mean is, let say if the name of the parent is 'abc'. You are sending the value in the action parameter as:
"abc"
Here, what happens is when it is sent to your request, the body template would be:
"parents": [abc]
This won't be recognized as a proper string value in the JSON format. Instead, try sending the value of the parent in your action stage as
"""" & "abc" & """"
This will ideally append your double quotation marks to the parent and hence the template will look like:
"parents": [ "abc"]
Try this and let us know if you get the same error or not.
------------------------------
----------------------------------
Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future
Regards,
Devneet Mohanty
Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,
Wonderbotz India Pvt. Ltd.
Blue Prism Community MVP | Blue Prism 7x Certified Professional
Website:
https://devneet.github.io/Email: devneetmohanty07@gmail.com
----------------------------------
------------------------------
---------------------------------------------------------------------------------------------------------------------------------------
Hope this helps you out and if so, please mark the current thread as the 'Answer', so others can refer to the same for reference in future.
Regards,
Devneet Mohanty,
SS&C Blueprism Community MVP 2024,
Automation Architect,
Wonderbotz India Pvt. Ltd.