I am attempting to create a ticket using the `comment.body` field to use Markdown formatting documented here: https://developer.zendesk.com/api-reference/ticketing/tickets/ticket_comments/#bodies
Here's an example curl request with my test body:
curl https://{subdomain}.zendesk.com/api/v2/tickets.json \
-d '{"ticket": {"assignee_id": 1234, "id": null, "subject": "A test email", "comment": {"body": "This message should render **markdown**"}, "requester": {"email": "redacted@rdctd.io", "id": null, "name": "redacted"}}}' \
-v -u "{username}:{password}" -X POST -H "Content-Type: application/json"
The sent email is not formatted as expected. My suspicion is that the body is incorrectly translated to HTML because `html_body` is populated in the response:
...ticket audit response
"events":[{"id":12345,"type":"Comment","author_id":15379865986587,"body":"This message should render **markdown**","html_body":"<div class=\"zd-comment\" dir=\"auto\"><p dir=\"auto\">This message should render **markdown**</p></div>","plain_body":"This message should render **markdown**","public":true,"attachments":[],"audit_id":12345}
...
Is there something wrong with my request? I am following the documentation by only including one of `body` or `html_body`. Is the documentation wrong? Or is there an API bug?
