We have a workspace on FME server (2021.2.6) with a published parameter ProjectName.
We're submitting jobs through the REST enpoint, using json for the parameters.
Now we have a project name with an single quote (apostrophe), like:
A'dam
This results in a code 400 - bad request.
So, what is the correct way to send this string in the json? What we have tried:
A%27dam
This works, but then we need to decode the string in workbench.
A\'dam
This works, but server interprets this as as a double quote.
A"dam
We also tried to replicate this in submitting a job from the fme server interface but then the parameters are sent as form data, not as json...