Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




.IssuesService.UpdateIssue(issue); do not update issue

api

Hello!

As i mentioned that method do not updat issue. For example i wanted to update one of the comments.

       var comments =  issue.IssueComments;
        comments[0].Comment = "Done!";
        _smProxyManager.IssuesService.UpdateIssue(issue);

locally issue was changed, but after calling it one more time, comment didn't changed.

piscevs
· 1
piscevs
Replies (1)
helpful
0
not helpful

To update a comment you'll need to use the UpdateComment API.


Mark Wing
· 9108
Mark Wing