I have an automation that is run monthly that creates a filter using my authorization token. I would like it to also set "Viewers" and "Editors" to a specific project(or to My Organization) and for it to be starred. Is that possible? Currently my automation looks like so:
Filter then is created that sets "Viewers" and "Editors" both to Private which is not helpful because I need others on my team to be able to use it.
Hello,
You just need to upgrade your payload for the REST API call. Something like this:
{
"name": "My Custom Filter",
"description": "Filter for MYPROJECT board",
"jql": "project = MYPROJECT ORDER BY created DESC",
"favourite": false,
"sharePermissions": [
{
"type": "project",
"project": {
"id": "10001" // Replace with the actual project ID
}
}
]
}
Please refer to the documentation here and check request body:
Hello, @Deborah Wong
hide the API for security reasons. I see that you covered only one section, but the full URL is still visible in the image.
Best regards!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
TY- (facepalm) going back and hiding it!
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.