Hello,
I need to programmatically check and enable JIRA Integration for many projects (> 100) and schedule a daily/weekly job to check and automatically activate the JIRA integration for new ones. The JIRA and other configuration was already done, so I only need to activate the JIRA service: Project-> Settings -> Integrations -> JIRA -> Active
Hi, @Tristan!
Great! I can get service object using python API
service = gl.projects.get(id).services
How can I get service parameters? id, title, active ?
… and how to set active=true ?
Thanks.