Dear All,
I'm not a REST expert, but I'm trying to automate some things in the Bamboo.
I would like to add existing user to plan via REST API.
I already found an entry from the official documentation, but I can't figure it out.
Getting users from the plan is working like a charm via GET method:
http://localhost:8085/rest/api/latest/permissions/plan/TEST-TEST/users
but how can I add for example user "test1" to Project TEST / Plan TEST using PUT method?
My preferable way to do this is by cURL, wget or anything from Linux terminal, I'm using Bamboo 6.2
Thank you all in advance!
curl -X PUT -u admin:admin
-H "Content-Type: application/json"
-d "[\"READ\",\"WRITE\",\"BUILD\",\"CLONE\",\"ADMINISTRATION\"]"
http://localhost:9087/bamboo/rest/api/latest/permissions/plan/TEST-TEST/users/myuser
Quick and excellent answer, thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have tried this REST API call in bamboo 6.2.2 and result is, that user is added to the plan, but without any role/permission. Do you know reason why?
thanks,
Branislav
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.