views:

95

answers:

2

I was wondering if there are urls for the various calls that can be made to jira. get issues, get users. what format are they in xml? json?

I want to write a wrapper class in python. I see the SOAP api exsists but no methods definitions in python anywhere I can find. I found the java one fairly easy.

Your help is appreciated.

Please and thank you.

A: 

the Atlassian site has samples right on it.

using SOAP client to interact with Jira:

http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Client

and using xml-rpc to interact with Jira:

http://confluence.atlassian.com/display/JIRA/Creating+a+XML-RPC+Client

also check out the documentation they have for the API:

http://confluence.atlassian.com/display/JIRA/JIRA+XML-RPC+Overview

Corey Goldberg
thanks but, I am aware of that; where is the python api?
garbagecollector
i updated my answer with one more link. check out that page.. it explains how to use the remote API. not sure what else you need. the API is the same from any client bindings.
Corey Goldberg
A: 

There is a Python CLI that I wrote that uses the SOAP API. The JIRA REST API has not been made public yet as far as I can tell.

~Matt

mdoar