user3789961
user3789961

Reputation: 145

Create JIRA Ticket with JIRA Version 3.12

I want to Automate JIRA ticket create process,for which i have got below links stating to use JIRA Rest API.

1.JIRA REST API link

2.Code project Link

But our current JIRA version is :(Professional Edition, Version: 3.12.3-#302), which we can't upgrade it to newer versions 5.0 or later.When executing this API code by using required credentials and parameters, i am getting below error as return message.

enter image description here It seems,JIRA REST API is made applicable from version 5.0 or later. If anyone has any other way achieving this,let me know.

Upvotes: 1

Views: 147

Answers (1)

GlennV
GlennV

Reputation: 3680

Before the REST APIs for JIRA were added (this started in JIRA 4), there were SOAP and XML-RPC interfaces (they were removed in JIRA 7).

You can still find links to documentation for older JIRA versions on this page.

It seems that the online JIRA 3 documentation does not work very well anymore though, but you can try the docs for JIRA 4 instead. They seem to have working links. Ie:

Upvotes: 1

Related Questions