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.
Hi I am trying to create branch in bamboo project plan through REST API ... through node js code . using post .
var Url = http://localhost:8085/rest/api/latest/ + 'plan/project/branch/branchName?vcsBranch="/poName"'; try{ axios.post(Url, {}, { auth: { username:['username'], password: ['password'] }
I am getting Request failed with status code 405 ...
"Error: Request failed with status code 405\n at createError (c:\BitBucketRepo\server\node_modules\axios\lib\core\createError.js:16:15)\n at settle (c:\BitBucketRepo\server\node_modules\axios\lib\core\settle.js:18:12)\n at IncomingMessage.handleStreamEnd (c:\BitBucketRepo\server\node_modules\axios\lib\adapters\http.js:202:11)\n at IncomingMessage.emit (events.js:187:15)\n at endReadableNT (_stream_readable.js:1094:12)\n at process._tickCallback (internal/process/next_tick.js:63:19)"
Hi,
I believe your url is not correct. According to documentation it should look like this:
http://localhost:8085/rest/api/latest/plan/{projectKey}-{buildKey}/branch/{branchName}
Sorry here i was posted wrong url . in my code i am posting correct url. for correct url aslo i am getting same error
i am posing though constant so here i am edited that ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Method PUT should be used, but it looks like you are sending POST request.
Did you try something like "axios.put"?
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.
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.