Hi, we are using the JIRA REST API v2 and are trying to use Atlassian emoji, such as :thumbsup:
, in the API call. However these are not rendered in the text fields of the issue.
Eg. if we wanted to add an emoji to the description field of an issue we might use the following call:
PUT /rest/api/2/issue/XX-01
{
"fields": {
"description": "Working on this :thumbsup:"
}
}
However it will not render the actual emoji. Is there any way to achieve this? I know we could use Atlassian Document Format with API v3 but we’re hoping not to make a major change like that just for emojis.
Currently we’re using standard unicode emojis, but they’re inconsistent across platforms and don’t look that great compared to the Atlassian emojis.