You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Problem
I am trying to add a comment to a build in bamboo.
via - https://docs.atlassian.com/atlassian-bamboo/REST/8.2.1/#d2e1674
but the document json also refers to xml schema
need to know how to post a comment with a rest request
Note:
I am using personal access token , I have verified that this token is working for the get comments and retrives the data successfully
Try the following syntax:
curl -s -k -u user:pass -H 'Content-Type: application/json' -X POST -d '{ "content": "Test567" }' "https://<bamboo_url>/rest/api/latest/result/PROJ-PLAN-BUILDNUM/comment"
To see the comments:
curl -s -k -u user:pass -H 'Accept: application/json' -X GET "https://<bamboo_url>/rest/api/latest/result/PROJ-PLAN-BUILDNUM/comment?expand=comments.comment"
Regards,
Eduardo Alvarenga
Atlassian Support APAC
Can you also help to update this in the api document
https://docs.atlassian.com/atlassian-bamboo/REST/8.2.1/#d2e1674
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Bharathan Kumaran,
The Bamboo development team is working internally to refactor the Bamboo REST docs to a new Swagger interface. Please keep an eye on https://developer.atlassian.com/ for new changes.
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.