I wanted to use POST method / HTTP Request activity in the studio. But I don’t know how to give cookie as parameter. If there is " ; " character in the cookie , the studio throws the error in screenshot.
Could you please help me if you have a solution for this?
@xbalan Simple solution is to use Cookies section of http request as @loginerror suggested. I believe you are using use Set-Cookie directly from Header response as Cookie in Cookies section of http request.
Make API call in postman and there you can see name and value of each cookie under Cookies tab of response. You need to send the cookies separately like that in UiPath. You can perform string manipulation on Set-Cookie and get values of each cookie. It will work.