HI I want to do a patch api request through UiPath using http request, it is showing 404 error
Can you help me, how to form a correct request through http request input paramaters that are in the used in the url of the api(SOBJECT_API_NAME,RECORD_ID). I am using C# UiPath project.
In a VB project, the body should look like below (basically you are escaping the " with one more ")
Example:
{"attributes":[{ "type": "Legal Name","value": "Sean123"}]}
Will be:
"{""attributes"":[{ ""type"": ""Legal Name"",""value"": ""Sean123""}]}"
The body format needs to be set to application/json