I can successfully add a comment to an issue through the rest api, v3. I am now trying to include a @Mention to a new comment. I have tried @username, [~username], ~username, and [@username] to no avail. Is there anyway to include a mention on a comment though the rest api? I am currently using my own credentials to authenticate the api, I do have permission to create @Mentions.
Hi @Jim Gruszczynski ,
If I understand correctly you can successfully add a comment using the REST API v3 endpoint /rest/api/3/issue/{issueIdOrKey}/comment but you are unable to add user mentions in the body of the comment.
If my understanding is correct, then looking at the documentation for /rest/api/3/issue/{issueIdOrKey}/comment I can read:
body
anything
The comment text in Atlassian Document Format.
If you open the Atlassian Document Format (ADF) page, on the left hand side menu, you can see a section named Node - mention that shows below example for adding a user mention in ADF:
{ "type": "mention", "attrs": { "id": "ABCDE-ABCDE-ABCDE-ABCDE", "text": "@Bradley Ayers", "userType": "APP" } }
I am pasting below all the useful links for your reference. Please review them, try to add the user mention using ADF and let us know if this works as expected:
Cheers,
Dario
Thank you very much @Dario B this helped and I now have @mentions added to the comments. Is there a way to get the email notifications to also be sent when the comment with a mention is added?
Thanks
Jim Gruszczynski
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are very welcome @Jim Gruszczynski ,
If the answer helped please remember to accept it so that the thread will be marked as answered.
Then, for the rest, can you kindly provide more details on what you mean with:
Is there a way to get the email notifications to also be sent when the comment with a mention is added?
The expected behavior is that users will receive notifications if they are mentioned in a comment. Please see below post for some more details:
Cheers,
Dario
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your quick reply. When in the JIRA Software web site, when a user adds a comment with a @mention to another user, the other user will receive and email that they were mentioned in a comment. Using the resources you pointed me at I was able to get the mention to work, but no emails were received by the mentioned users.
Thanks,
Jim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dario B disregard the mentions not sending notifications, that is working, it did not notify my account when I added a mention to myself. This seems reasonable.
Thanks Jim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice to know this is working!
Also, you can actually configure Jira to also send notifications for your own changes. As mentioned in the Configuring email notifications documentation page this is something you can actually set in your user profile:
Jira's default setting is to not notify users of their own changes. This can be changed on a per user basis via their profile preferences.
For more details please see:
Cheers,
Dario
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dario B Thanks for the details. This is preciously what i was looking for. Only issue is instead of accountid if this could take email id, that would have been much simpler to code
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Alternate solution:
URI- https://<domain-name>/rest/api/3/issue/{issueKey}/comment
request body-
{
"body": "[~accountid:5d9d467e0d44fc0dca5413e7] <your comment>"
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was looking for a solution for use with jira-python, and this did the trick. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.