Hey there
I am trying to add a note to a request via the API: '{base_url}/api/v3/requests/32435/notes'. Headers and Content-Type all set up correctly.
When trying to send this input data:
{ "request_note": { "description": "My Note\nFor you" } }
it get an 201 response code.
I expect the note to be displayed that way:
My Note
For you
Instead the note is displayed as:
My Note For you
When manually adding a note I can easily format the note to my desires.
So the API somehow processes the escaped characters but not in the inteded way. Is there a hidden setting or header I overlooked?