Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

QMetry Automation API - link supports Jira's Sprint. Users need to pass the Sprint ID to as a parameter. This document show how to get the Sprint ID from JIRA.

Jira's Sprint ID can be retrieved by Jira's Rest API. Below is the API to get the Sprint ID.


To get the Sprint ID from Jira is a 2 step process :

Method 1: Run API via Postman.

Step 1: Get Rapid View ID(Board ID).

URL: https://<Jira base URL>/rest/greenhopper/1.0/rapidview

Method : Get

Request Header : As this is Jira's API you need to pass your Jira credentials in the form that Jira API supports.

Supply an "Authorization" header with content "Basic" followed by the API token and username/Email address.

Step 2: Get Sprint ID.

URL: https://<Jira base URL>/rest/greenhopper/latest/sprintquery/{rapidViewId}?includeHistoricSprints=true&includeFutureSprints=true

Method : Get

Request Header : As this is Jira's API you need to pass your Jira credentials in the form that Jira API supports.

Supply an "Authorization" header with content "Basic" followed by the API token and username/Email address.


Method 2: Hit API URL in the browser

Step 1: Get Rapid View ID(Board ID).

URL: https://<Jira base URL>/rest/greenhopper/1.0/rapidview

Step 2: Get Sprint ID.

URL: https://<Jira base URL>/rest/greenhopper/latest/sprintquery/{rapidViewId}?includeHistoricSprints=true&includeFutureSprints=true


  • No labels