I am trying to make an API request and i need search query in Greek language.
What I need:
I ask my customer to type which product want to see and lets say he types: Αεροθερμο
Problem:
flowxo gets customer’s answer and it puts it in the link to make the request like this:
https://…/api/2.0/products?q=Αεροθερμο
but it should be in url encoding:
https://…/api/2.0/products?q=%CE%B1%CE%B5%CF%81%CE%BF%CE%B8%CE%B5%CF%81%CE%BC%CE%BF
if i type something in english it finds results for example:
https://…/api/2.0/products?q=heater
is there any solution to this?