Home
TeamSite
How to integrate TeamSite Workflow with JIRA (bug tracking tool)
rksonti
Hi,
Is any body implemented TeamSite Workflow integration with JIRA.
JIRA is a bug/issue tracking system.
My requirement is, when ever workflow is initiated, it needs to contact JIRA and verify whether the Ticket no provided by the user is correct or not. And also it needs to change ticket status depending up on the deployment status.
I need sample code to call Webservice using perl code.
Find more posts tagged with
Comments
motlnt
chek if JIRA provides any API to call their services.Ideally your workflows will need to invoke the external scripts to talk to JIRA via this APIs.
Tbag
Check out
http://docs.atlassian.com/software/jira/docs/api/latest/
I think if you used a SearchContextImpl and got the List of getProjectIds( ), you'd be on your way.
If you needed to export this as a web service, there's a whole com.atlassian.jira.service.services package to help you out.
rksonti
Thanks Tbag.