I’m currently using the Jira Cloud REST API and I have a question regarding comment reply support in Jira Core (Work Management) projects.
From what I can see, the comment API (/rest/api/3/issue/{issueIdOrKey}/comment) does not provide any field that indicates a reply relationship, such as a parent comment ID.
I’d like to confirm the following:
-
Does Jira Core (projectTypeKey = “business”) provide any official way to identify comment replies or parent comment IDs via the REST API?
-
If not, is there any documented reason or product limitation explaining why reply/threaded comments are not available in Core/Software projects?
-
What is the recommended approach for displaying threaded comments when using Jira Core?
-
Should this be implemented using custom comment properties?
-
Or should reply relationships be stored in an external database?
-
My understanding so far is:
-
Jira Core and Jira Software only support flat comments, with no reply or thread structure in the underlying data model.
-
Only Jira Service Management provides a parent comment identifier via comment properties (e.g.,
sd.public.comment.parent.id). -
Therefore, reply relationships cannot be retrieved for existing comments in Core/Software projects, unless they were manually stored as custom properties.
Can you confirm whether this understanding is correct, and advise on the recommended way to support threaded comment UI in Jira Core?
Thanks!