Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
JIRA 7 Administration Cookbook

You're reading from   JIRA 7 Administration Cookbook Over 80 hands-on recipes to help you efficiently administer, customize, and extend your JIRA 7 implementation

Arrow left icon
Product type Paperback
Published in May 2016
Publisher
ISBN-13 9781785888441
Length 264 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Patrick Li Patrick Li
Author Profile Icon Patrick Li
Patrick Li
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. JIRA Server Administration 2. Customizing JIRA for Your Projects FREE CHAPTER 3. JIRA Workflows 4. User Management 5. JIRA Security 6. E-mails and Notifications 7. Integrations with JIRA 8. JIRA Troubleshooting 9. JIRA Service Desk

Using JIRA REST API


JIRA exposes many of its features through a set of REST APIs, allowing other applications to interact with it. With these APIs, you can perform operations such as searching, creating, and deleting issues. In fact, several of the add-ons used throughout this book make use of these REST APIs to perform their functions.

Being a web-based standard, JIRA's REST API allows you to use any technology with it. This means, you can write the code in Java, .NET, JavaScript, or even with simple bash scripts.

In this recipe, we will be using the RESTClient Firefox add-on to run a search query against JIRA for getting a list of issues assigned to the currently logged-in user. There are many other tools you can use, such as cURL, and Postman for Chrome.

How to do it...

Perform the following steps to run a search query using JIRA's REST API:

  1. Open up REST Client in the Firefox browser.

  2. Set the Method to Get.

  3. Enter the following into the URL text box: http://localhost:8080/rest/api/2/search?jql...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image