I am using the following jira-rest-java-api
com.atlassian.jira jira-rest-java-client-core 5.2.6A Comment can be added with “issueRestClient.addComment(issue.getCommentsUri(), Comment.valueOf(“My Comment”)).claim();”.
But how to add a reply to a comment using this API? (Overview (JIRA REST Java Client 4.0.0 API) (atlassian.com))
Second question: How to get replies to a comment?
Getting all comments (incl. replies) can be requested via “issue.getComments()” but how to get the replies for only one comment? Or is it possible to know the parent for each comment returned by “issue.getComments()”?