Bhoj Raj Bhatta
Bhoj Raj Bhatta

Reputation: 2579

how to create a jira ticket from PHP application

I am trying to create a system that can create jira tickets from our application, which is independent of jira. I have heard of REST API and Soap API but I dont really know how to use these api? Is there anything that can help me to get a kick start? any help is highly appreciated.

Upvotes: 1

Views: 992

Answers (2)

Sven
Sven

Reputation: 70933

Have a look at the documentation. http://docs.atlassian.com/jira/REST/latest/

A REST api usually accepts HTTP request with data and sends something back. And there are plenty of REST clients written in PHP, so you won't need to do it again. Just have a look at packagist.org and search for "rest" to find about 14 pages worth of related stuff, with "Guzzle" being the most used: https://packagist.org/packages/guzzle/guzzle

Upvotes: 1

Related Questions