I am trying to make a post request and send the following payload in the body. The payload works fine in postman, but it throws an error in Uipath.
Payload used in postman :
{“searchFilterMap”: {“issueDate”: {“fieldName”: “issueDate”,“filterOperator”: “gt”,“filterValue”: “2018-10-04”,“andOrOperator”: “AND”}},“paging”: {“page”: 1,“pageSize”: 100},“sortList”: [{“property”: “issueDate”,“direction”: “DESC”}],“resultList”: }
Payload used in Uipath after formatting:
“{”“searchFilterMap”":"{“issueDate”":""{"“fieldName”": ““issueDate””,"“filterOperator”": ““gt””,"“filterValue”": ““2018-10-04"”,”“andOrOperator”": ““AND””}"},“paging”: “{”“page”": ““1"”,”“pageSize”": 100}",“sortList”: “[”"{"“Property”":"“issueDate”","“direction”":"“DESC”"}""]",“resultList”": “”""}"
Thank you !!