Hi, is there any way to search for all the issues that include the spesific comment?
for exmple:
https://ProjectName/rest/api/2/search?jql=comment="word to search"
Have you tried to search using JQL, matching on your comment's text with partial matching Please see here for a reference:
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just tried this and it worked for me. Replace your company instance name, project, and word to search in a comment.
https://myCompany.atlassian.net/rest/api/2/search?jql=project%3DmyProject%20AND%20comment%20~%20wordToSearch
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.