Is it possible to set author of a new comment using Atlassian SDK? I tried following but didn't work
JiraInstance = Jira.CreateRestClient("<url>", "<user>", "<password>");
Atlassian.Jira.Comment c = new Atlassian.Jira.Comment();
c.Body = "my comment from code";
c.Author = "<user name>";
JiraInstance.Issues.AddCommentAsync(Key, c)
You cannot set the comment of the author using the REST Api.
why?, documentation of API says its possible, yet it does not seem to work ..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can we Just add name somewhere in the body of the comment? so it at least shows info about the comment author!! rather than just admin user?
using REST API
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.