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:
Just wanted to close the loop and say that what you suggested worked- I tweaked it a bit to encompass editing permissions.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.