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.
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.