I need to update multiple projects (over 100) with different Permission and Notification schemes, but need some help with the best approach, please.
Does anyone have a good example of an API that would help? My initial thoughts are to use an update project API - PUT /rest/api/2/project/{projectIdOrKey} with:
{"key": "ABC",
"permissionScheme": 10000,
"notificationScheme":10000,
},
{"key": "XYZ",
"permissionScheme": 10000,
"notificationScheme":10000,
},
etc
I'm not sure if this is correct though as it needs the id or key in the URL. Any help is greatly appreciated.
Thank you.
Community moderators have prevented the ability to post new answers.
You'll have to launch a REST call for every project to be changed!
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.