Issue Summary
German umlauts are not displayed correctly when it comes as a result in Jira automation rule webhookData
Steps to Reproduce
- Setup an automation rule with incoming web request trigger.
- Next, send a web request using curl with the below excerpt:
curl -X POST -H 'Content-type: application/json' -H 'X-Automation-Webhook-Token: <<Secret>>' \ --data '{ "data":{"test":"fööö"} }' \ <<Incoming web request URL>>
- Then we print the output log in the Log Action component using
{{webhookData}}
- Now, Add an advanced component to incorporate the advanced branching in the Automation rule as below:

- Add the Log Action component with the same webhookData.value and then run the automation rule by hitting the Incoming web URL
Expected Results
The webhookData should result in the following:
{test:fööö}
thus keeping the umlauts in place.
Actual Results
The webhookData with the "fööö" will be printed as:
{test=f���}
Workaround
There is no workaround available as of now.