Zephyr for Jira Server exposes its data via a REST API which allows you to access the data programmatically and build your own integrations. The API is entirely HTTP-based. You can use the API to:

For example, you can build an integration that would create a test in a separate tool or system and add it to Zephyr for Jira Server or create a test execution cycle and update the status of a test execution run after it has been executed in an automation tool.

Previously, to access Zephyr for Jira Server REST API, you had to install an additional plugin (ZAPI). As of October 2020, the API is available out-of-the-box, and the ZAPI plugin is no longer needed.

Reference

Follow the link below to view the API documentation along with code examples for cURL, C#, JavaScript, Node.js, Python, PHP, and Ruby.

http://docs.getzephyr.apiary.io/

Using the API, you can:

Base URL

The base URL for API calls is:

http://SERVER[:PORT]/jira/rest/zapi/latest

For example, POST /jira/rest/zapi/latest/cycle means a POST request to http://localhost:2990/jira/rest/zapi/latest/cycle, which creates a new cycle.

JSON requests

Most operations that accept a request body expect it in the JSON format.

POST and PUT request containing a JSON request body must include the Content-Type header:

Content-Type: application/json

Rate limits

Remarks

Got Questions?

Check out the Knowledge Base developer section on the Support site to get your questions answered or to see samples.

Community

Check out the Zephyr for Jira community for the latest news, FAQs, samples and discussions.