Hi community!
We are trying to add a project role to an issue security scheme by using the endpoint “Add issue security level members” of the API, as documented here.
My assumption was that it should be possible to add a project role to the security scheme by using the type projectRole
with the respective parameter
, since we are doing the same thing for permission schemes. The request and response look as follows, so the type projectRole
is apparently not supported:
On the other hand, the following request with the same type
is successful when updating a permission scheme:
{
"description": "xyz",
"name": "xyz",
"permissions": [
{
"holder": {
"parameter": "10336",
"type": "projectRole"
},
"permission": "ADMINISTER_PROJECTS"
}
]
}
I know that the “Add issue security level members” endpoint is still experimental. But I was wondering if there are any plans to add the ability to add project roles to a security scheme via API? Or is there another way to achieve this that I am not aware of?
Thank you for your help!