Consume a complex Salesforce endpoint via REST method
0
Hi, I try to consume a complex APi in a microflow via Call REST. The url location is something like : https://endpoint.com/services/data/v45.0/parameterizedSearch/?q=bilman&sobject=Opportunity&Opportunity.where=StageName='Won' &Opportunity.fields=name&Opportunity.limit=50 The problem is that on the url the ‘Won’ part, Mendix don’t like that and return an error with blank $latestHttpResponse How can I solve it ? Many thanks
asked
Vincent BONDOUX
1 answers
1
You could try to use the urlEncode() function on the values of the query parameters: you should probably encode the apostrophes.