Synchronizing JIRA with 3rd Party System

Khurram Mir February 5, 2013

I want to synchronizing my bug tracking system to JIRA. I use different rest api approaches to get bug information, but not get appropriate information.

http://example.com:8080/jira/rest/api/2/issue/{issueIdOrKey} [GET, DELETE, PUT] http://example.com:8080/jira/rest/api/2/search [GET, POST]

but both of these cant give me appropriate information.

and one more these can me protected properties of json, which is not able to parse.

[requestLength:protected] => 0 [acceptType:protected] => application/json [responseBody:protected] => {"expand":"renderedFields,names,schema,transitions,operations,editmeta,changelog", ....

Look at protected properties of json.

What i am looking for

1-Get latest Status of the bug. 2-Parse protected properties of JSON.

1 answer

0 votes
Gary
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 8, 2013

Hi Khurram,

To pull the status back of an issue, you would just need to add '/status':

http://example.com:8080/jira/rest/api/2/issue/status [GET]

For #2, can you show me the contents of the script you are using (minus the credentials)?

Cheers,

Gary

Khurram Mir February 11, 2013

http://example.com:8080/jira/rest/api/2/issue/status [GET]
This give me all of the bugs in the system,i only want spacific bug whoes bug id is given.

one more thing JSON responce is protected ([responseBody:protected]) how i get ([responseBody]) with out protected condition.


Suggest an answer

Log in or Sign up to answer