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.