You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I am trying to add a comment while changing issue status by rest api.
curl -D- -u admin:admin -X POST --data @/Users/ziyan/Desktop/test.json -H "Content-Type: application/json" https://mytestingurl.atlassian.net/rest/api/2/issue/ZD-25/transitions?expand=transitions.fields
Here is the JSON:
{ "transition": { "id": "61" }, "update": { "comment": [ { "add": { "body": "Bug has been fixed." } } ] } }
For some reason, I get the 204 response and have my status changed, but I am unable to add the comment. What could possibly go wrong?
Please help! Thanks
I believe that you just have the order wrong. Try this and it should work:
JSON:
{ "update": { "comment": [ { "add": { "body": "Comment added when transitioning issue" } } ] }, "transition": { "id": "61" } }
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.
I figured out the answer. You can only add a comment while transitioning by REST if you require a comment for transitioning in UI. Thanks for your help Brant.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.