Skip to main content
Skip table of contents

Issue List v2

Overview

GET /rest/list2

POST /rest/list2

This endpoint is used to retrieve a list report as text (CSV or JSON).

GET and POST methods provide the exact same functionality but POST method allows a much larger request size. If your query parameters are too long to be used with a GET method (because you have a very long JQL or have too many statuses/fields selected) use POST method to access this endpoint.

If you have more than a few hundred issues, you're recommended to use file export endpoints rather than this one since getting the data as a single export file will produce much faster results, will create a much smaller load on your Jira instance, and can be implemented with less complexity.

Required Permissions

  • All Users with Timepiece access can retrieve a list report.

Request

Basic Request

NONE
GET <service_url>/rest/list2?filterType=<filterType>&(user=<user> | projectKey=<projectKey> | jqlFilterID=<jqlFilterID> | customjql=<customjql> | sprintID=<sprintID> )&columnsBy=<columnsBy>&calendar=<calendar>

POST <service_url>/rest/list2?filterType=<filterType>&(user=<user> | projectKey=<projectKey> | jqlFilterID=<jqlFilterID> | customjql=<customjql> | sprintID=<sprintID> )&columnsBy=<columnsBy>&calendar=<calendar>

Full Request

NONE
GET <service_url>/rest/list2?filterType=<filterType>&(user=<user> | projectKey=<projectKey> | jqlFilterID=<jqlFilterID> | customjql=<customjql> | sprintID=<sprintID> )&columnsBy=<columnsBy>&fields=<fields>&statuses=<statuses>&groups=<groups>&includeDeletedStatuses=<includeDeletedStatuses>&startDate=<startDate>&endDate=<endDate>&dateRangeField=<dateRangeField>&trimHistoryStartDate=<trimHistoryStartDate>&trimHistoryEndDate=<trimHistoryEndDate>&calendar=<calendar>&dayLength=<dayLength>&viewFormat=<viewFormat>&outputType=<outputType>&pageSize=<pageSize>&nextPageToken=<nextPageToken>&includeTransitionedByColumns=<includeTransitionedByColumns>

POST <service_url>/rest/list2?filterType=<filterType>&(user=<user> | projectKey=<projectKey> | jqlFilterID=<jqlFilterID> | customjql=<customjql> | sprintID=<sprintID> )&columnsBy=<columnsBy>&fields=<fields>&statuses=<statuses>&groups=<groups>&includeDeletedStatuses=<includeDeletedStatuses>&startDate=<startDate>&endDate=<endDate>&dateRangeField=<dateRangeField>&trimHistoryStartDate=<trimHistoryStartDate>&trimHistoryEndDate=<trimHistoryEndDate>&calendar=<calendar>&dayLength=<dayLength>&viewFormat=<viewFormat>&outputType=<outputType>&pageSize=<pageSize>&nextPageToken=<nextPageToken>&includeTransitionedByColumns=<includeTransitionedByColumns>

Parameters

Parameter

Description

Required

Value Samples

paramSetId

The ID of the reference parameter set that will be used to infer parameters.

See (vNewSearchAPI) Getting reports with Parameter Sets for details about getting reports with a reference parameter set.

  • 276d7bea-f4df-49e6-b231-1b15d4ed852a

outputType

The output format of the report. Possible options are:

  • CSV = Returns a CSV (comma separated value) that contains the report data as text.

  • JSON = Returns a JSON (JavaScript Object Notation) that contains report data 

If not provided, "json" will be used.

  • csv

  • json

filterType

Defines how the issues to be included in the report will be selected. Possible options are:

  • user = Report will filter out the issues assigned to the selected user

  • project = Report will filter out issues in the selected Jira project

  • jqlfilter = Report will filter out issues based on an existing JQL filter

    • The value advanced is deprecated but is still valid and will be processed as jqlfilter.

  • customjql = Report will filter out issues based on a given JQL query 

  • sprint = Report will filter out issues based on an existing sprint 

Yes

  • user

  • project

  • jqlfilter

  • customjql

  • sprint

user

If filterType is user, system expects a user name in the form user=<some_user_name>

Only when filterType = user

  • user=admin

projectkey

If filterType is project, system expects a project key in the form projectKey=<project_key>

Only when filterType = project

  • projectKey=ABC

jqlfilterID

If filterType is jqlfilter, system expects a JQL filter ID in the form jqlFilterID=<jqlFilterID>

Only when filterType = jqlfilter

  • jqlFilterID=10145

customjql

If filterType is customjql, system expects a JQL Query in the form customjql=<customJQL>

Only when filterType = customjql

  • customjql=project=ABC

sprintID

If filterType is sprint, system expects a Sprint ID in the form sprintID=<sprintID>

Only when filterType = sprint

  • sprintID=2

columnsBy

Defines the column structure of the report. Possible options are:

  • statusDuration = Report will show durations spent on each status as column values

  • durationBetweenStatuses = Report will show the durations spent between two statuses as column values.

  • statusDurationByTimePeriod = Report will show durations spent on each status in each time-period as column values

  • timePeriodDurationByStatus = Report will show durations spent in each time-period on each status as column values

  • assigneeDuration= Report will show durations spent on each assignee as column values

  • statusDurationByAssignee = Report will show durations spent on each status on each assignee as column values

  • assigneeDurationByStatus = Report will show durations spent on each assignee on each status as column values

  • groupDuration= Report will show consolidated durations spent on members of each group as column values

  • statusDurationByGroup = Report will show durations spent on each status on each user group as column values

  • groupDurationByStatus = Report will show durations spent on each user group on each status as column values

  • anyfieldDuration = Report will show how much time each issue field held each value

  • statusCount = Report will show counts for each status

  • transitionCount = Report will show counts for each transitions between statuses

  • anyFieldCount = Report will show how many times each issue field held each value

  • firstTransitionToStatusDate = Report will show the date the issue transitioned TO each status for the FIRST time as column values

  • firstTransitionFromStatusDate = Report will show the date the issue transitioned FROM each status for the FIRST time as column values 

  • lastTransitionToStatusDate = Report will show the date the issue transitioned TO each status for the LAST time as column values

  • lastTransitionFromStatusDate = Report will show the date the issue transitioned FROM each status for the LAST time as column values

Yes

  • statusDuration

  • durationBetweenStatuses

  • statusdurationbytimeperiod

  • timeperioddurationbystatus

  • assigneeDuration

  • statusDurationByAssignee

  • assigneeDurationByStatus

  • groupDuration

  • statusDurationByGroup

  • groupDurationByStatus

  • anyfieldDuration

  • statusCount

  • transitionCount

  • anyFieldCount

  • firstTransitionFromStatusDate

  • firstTransitionToStatusDate

  • lastTransitionFromStatusDate

  • lastTransitionToStatusDate

timePeriod

The time period to use for statusDurationByTimePeriod and timePeriodDurationByStatus report types. Has no effect on other report types.

Possible values are:

  • Year

  • Quarter

  • Month

  • Week

  • Day

If not defined, Month will be used as the default value.

  • Year

  • Quarter

  • Month

  • Week

  • Day

multiVisitBehavior

Defines the behavior of reporting individual status visits.

Only effective for Status Duration reports.

If not provided, default behavior "total" will be used.

See (vNewSearchAPI) Multi Visit Behavior

  • total

  • first

  • last

  • average

pageSize

The maximum number of issues in a page. (1-1000)

The default is 100 and values greater than 1000 or less than 0 will be processed as 1000.

50

nextPageToken

The token, which shows the starting point of the next page, if it exists.

The default value is null.

When sent as null, it points to the zero index of the first page of results.

If there is a next page in your results, the nextPageToken for the next page will be available in your response. To get the next page of results, you provide the nextPageToken in the previous response as the nextPageToken parameter in the next request.

For the reports with CSV output type, you can find nextPageToken in the response headers.

ChkjU3RyaW5nJlZGUlElSW50Jk1qZ3lOREk9EOgHGPXmn6qHMyITKCBwcm9qZWN0ID0gIlRUUCIgKQ==

fields

The IDs of fields (separated by commas) on JIRA Issue that will be added to report output as columns.

Both system and custom fields are supported. For more information see (vNewSearchAPI) Field Names for REST Reports

assignee,customfield_10020,customfield_10007,description,duedate, fixVersions

historyFields

The IDs of fields (separated by commas) on JIRA Issues that will be used for Any Field reports.

For details about Any Field report types please see: (vNewSearchAPI) Report Types

Both system and custom fields are supported. For more information see (vNewSearchAPI) Field Names for REST Reports

only when columnsBy = anyfieldDuration or anyFieldCount

assignee,customfield_10020,customfield_10007,fixVersions

statuses

A JSON array listing statuses for which the durations will be included in the report.

If not provided or left empty, the report will include all statuses in selected issues' histories.

For assignee based reports, durations of unselected statuses will be excluded from durations of assignee columns.

Supports two formats: Basic and Advanced

Basic:

Basic format is a comma separated list of status ID's to be included in the report.

Advanced:

Advanced format is a JSON text that contains status definitions.

Advanced format must be employed if you want to use the Consolidated Columns feature.

Typetypeattribute of each column defines whether the column is a Standard(std) orConsolidated(cons) column. Forstandardcolumns,idis the id of the status. For consolidatedcolumns, the statuses array contains the IDs of statuses to be included in the column. For more information on status selection and column consolidation, please see (vNewSearchAPI) Status.

Other parameters may be included in the URL as a query parameter but statuses parameter is expected to be sent in request body encoded as "application/x-www-form-urlencoded"

Note: You can get the list of statuses and their IDs, directly from your Jira. Please check Statuses part of the documentation.

Basic

CODE
1,3,4,5,10001,10234

Advanced

CODE
[
   {
      "id":"6",
      "type":"std"
   },
   {
      "id":"2",
      "type":"std"
   },
   {
      "name":"cons. status 1",
      "type":"cons",
      "statuses":[
         "10008",
         "3",
         "10007"
      ]
   }
]

assignees

Comma-separated list of IDs of users that will be included in the report.

If not provided or empty, the report will include all the assignees found in issues' histories.

Please refer to Jira Cloud REST API Documentation to get the IDs of your users

  • 557058:0d90377f-13ee-4313-9f66-00555aa280e3

  • 557058:0d90377f-13ee-4313-9f66-00555aa280e3, 5f3a9d459a01310041a64ecc

groups

The names of user groups (separated by commas) that will be included in Group reports.

If not provided or empty, the report will included all durations in a column named "Not a member of selected groups"

  • jira-administrators

  • jira-users, jira-administrators

dbsMetrics

The list of metrics that will be showed as columns in Duration Between Statuses reports. The parameter must be provided as JSON text.

The maximum number of metrics allowed is 10.

Each metric will report the duration between two statuses (or status sets) and consists of the following parameters:

name: (required)

Name of the metric. Can only include alphanumeric characters and space.

from:

The starting status(es) that the duration will be calculated from. Its format should be a JSON object contains id and order (first/last) of the status(es).

Not defining this parameter means that the starting point will be "issue creation".

to: (required)

The target status(es) that the duration will be calculated until. Its format should be a JSON object contains id and order (first/last) of the status(es).

excluded:

List of status ids that will be excluded from the calculations. Time spent on these statuses will not be added to total time.

Note: You can get the list of statuses and their IDs, directly from your Jira. Please check Statuses part of the documentation.

See (vNewSearchAPI) Report Types

only when columnsBy = durationBetweenStatuses

CODE
[
   {
      "name":"Resolution time",
      "to":{
         "id":["5", "7"],
         "order":"first"
      }
   },
   {
      "name":"Development time",
      "from":{
         "id":["1", "2", "3"],
         "order":"first"
      },
      "to":{
         "id":["6"],
         "order":"last"
      },
      "excluded":[
         "10008",
         "10003"
      ]
   }
]

includeDeletedStatuses

Sets whether included statuses in issues' histories will be included in the report or not:

Possible options are:

  • true

  • false

If not provided, "true" is assumed.

  • true

  • false

startDate

The start date of report filter.

When provided, only issues created/resolved/updated (based on dateRangeField value) after the given date will be included in the report.

Must be provided in "yyyy-MM-dd" or "yyyy-MM-dd hh:mm" format.

If time parameter is not provided, default time "00:00" will be used

See (vNewSearchAPI) Date Range

2017-07-01 00:00

endDate

The end date of report filter.

When provided, only issues created/resolved/updated (based on dateRangeField value) before the given date will be included in the report.

Must be provided in "yyyy-MM-dd" or "yyyy-MM-dd hh:mm" format.

If time parameter is not provided, default time "00:00" will be used

See (vNewSearchAPI) Date Range

2017-08-31 23:59

dateRangeField

The system date field of the Jira issue that startDate and endDate parameters will be based on. Possible options are:

  • created = The startDate and endDate parameters will be used to filter issues based on issue create date.

  • updated = The startDate and endDate parameters will be used to filter issues based on issue last update date.

  • resolved = The startDate and endDate parameters will be used to filter issues based on issue resolution date.

Only when either startDate or endDate is provided

  • created

  • updated

  • resolved

trimHistoryStartDate

The start date of history trim for issues.

When provided, only activities in each issue's history after the given date will be processed for the report.

Must be provided in "yyyy-MM-dd" or "yyyy-MM-dd hh:mm" format.

If time parameter is not provided, default time "00:00" will be used

See (vNewSearchAPI) Date Range

2017-07-01 00:00

trimHistoryEndDate

The end date of history trim for issues.

When provided, only activities in each issue's history before the given date will be processed for the report.

Must be provided in "yyyy-MM-dd" or "yyyy-MM-dd hh:mm" format.

If time parameter is not provided, default time "00:00" will be used

See (vNewSearchAPI) Date Range

2017-08-31 23:59

calendar

The calendar that report durations will be calculated based on. Possible options are:

  • normalHours = The durations will be based on a 7/24 calendar. (default)

  • n = ID of a custom calendar

Tip: You can get the IDs of calendars using the Calendars endpoint.

Required for Duration reports

  • normalHours

  • 0

  • 1

  • 2

dayLength

  • 24HourDays = Each day will be 24 hours.

  • businessDays = Can be used for calendars other than 7/24. The durations will be based on the business calendar defined in admin settings. Length of each day will also be based on business hours defined in admin settings.

Required for Duration reports

  • 24HourDays

  • businessDays

viewFormat

The format of duration data in the report. Possible options are:

  • humanReadable = The values will be shown like "44 d 5 h 2 m 35 s"

  • ddhhmmss = The values will be shown like "44:05:02:35"

  • hhmmss = The values will be shown like "1061:02:35"

  • days = The values will be shown in days, as a single decimal value like "44.61"

  • hours = The values will be shown in hours, as a single decimal value like "1061.04"

  • minutes = The values will be shown in minutes, as a single decimal value like "63662.59"

  • seconds = The values will be shown in seconds, like "3819755"

  • milliseconds = The values will be shown in milliseconds like "5235266"

If not provided, "minutes" will be used.

  • humanReadable

  • ddhhmmss

  • hhmmss

  • days

  • hours

  • minutes

  • seconds

  • milliseconds

dateFormat

The string format to use for displaying values of fields of type Date

If empty or missing, the date format defined in (vNewSearchAPI) Format Settings page is used. If Format Settings date format is also empty, the default date format set for Jira is used.

You can refer to the Java Documentation for more information about Date Format Strings.

  • yyyy-MM-dd

  • dd/MM/yy

  • dd/MMM/yyyy

dateTimeFormat

The string format to use for displaying values of fields of type DateTime

If empty or missing, the datetime format defined in (vNewSearchAPI) Format Settings page is used. If Format Settings datetime format is also empty, the default datetime format set for Jira is used.

You can refer to the Java Documentation for more information about Date Format Strings.

  • yyyy-MM-dd hh:mm a

  • dd/MM/yy HH:mm

  • dd/MMM/yyyy HH:mm:ss

emptyValueToken

The token to use for empty values in the report (for example when an issue has never visited a status)

Selecting a custom token might make it easier for the requesting system to process the data.

Possible options are:

  • Hyphen ("-") (Default)

  • Zero ("0")

  • Null ("null")

  • NoChar ("")

  • SingleSpace (" ")

  • NoToken ()

  • Hyphen

  • Zero

  • Null

  • NoChar

  • SingleSpace

  • NoToken

csvFieldSeparator

The character to separate CSV values.

Possible options are:

  • "comma" (,) (Default)

  • "semicolon" (;) 

  • comma

  • semicolon

decimalSeparator

The character to use as a decimal separator for decimal values in CSV format.

Possible options are:

  • "dot" (.) (Default)

  • "comma" (,)

  • dot

  • comma

valueQuotationMark

The character to quote values in CSV format.

Possible options are:

  • "doublequote" (")

  • "singlequote" (')

  • "none" ()

  • doublequote

  • singlequote

  • no

includeTransitionedByColumns

If set to "true", users who triggered the status transitions will be included as additional columns in the report.

This only applies to the following "columnsBy" values:

  • firstTransitionToStatusDate

  • firstTransitionFromStatusDate

  • lastTransitionToStatusDate

  • lastTransitionFromStatusDate

If not provided, the default value "false" will be used.

  • true

  • false

Example Requests

NONE
GET https://tis.obss.io/rest/list2?filterType=user&amp;user=admin&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=normalHours&viewFormat=minutes&pageSize=20
POST https://tis.obss.io/rest/list2?filterType=user&amp;user=admin&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=normalHours&viewFormat=minutes&pageSize=20
 
GET https://tis.obss.io/rest/list2?filterType=user&amp;user=admin&amp;columnsBy=statusDuration&amp;fields=assignee&amp;statuses=3,10000,10001&amp;includeDeletedStatuses=true&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=normalHours&dayLength=24HourDays&viewFormat=minutes&outputType=csv&nextPageToken=xlhrm9n3s9y
POST https://tis.obss.io/rest/list2?filterType=user&amp;user=admin&amp;columnsBy=statusDuration&amp;fields=assignee&amp;statuses=3,10000,10001&amp;includeDeletedStatuses=true&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=normalHours&dayLength=24HourDays&viewFormat=minutes&outputType=csv&nextPageToken=ykhrs6n2s5z
 
GET https://tis.obss.io/rest/list2?filterType=project&amp;projectKey=PMP&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00 &dateRangeField=created&calendar=0&dayLength=24HourDays&viewFormat=minutes&outputType=json&pageSize=90&nextPageToken=xlhrm9n3s9y
POST https://tis.obss.io/rest/list2?filterType=project&amp;projectKey=PMP&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00 &dateRangeField=created&calendar=0&dayLength=24HourDays&viewFormat=minutes&outputType=json&pageSize=90&nextPageToken=ykhrs6n2s5z
 
GET https://tis.obss.io/rest/list2?filterType=jqlfilter&amp;jqlFilterID=10004&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes&outputType=csv
POST https://tis.obss.io/rest/list2?filterType=jqlfilter&amp;jqlFilterID=10004&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes&outputType=csv
 
GET https://tis.obss.io/rest/list2?filterType=customjql&amp;customjql=project=ABC&amp;columnsBy=statusDuration&amp;multiVisitBehavior=first&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes
POST https://tis.obss.io/rest/list2?filterType=customjql&amp;customjql=project=ABC&amp;columnsBy=statusDuration&amp;multiVisitBehavior=first&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes
 
GET https://tis.obss.io/rest/list2?filterType=sprint&amp;sprintID=2&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes&outputType=json&pageSize=5
POST https://tis.obss.io/rest/list2?filterType=sprint&amp;sprintID=2&amp;columnsBy=statusDuration&amp;startDate=2017-09-01 00:00&endDate=2017-10-31 00:00&dateRangeField=created&calendar=1&dayLength=businessDays&viewFormat=minutes&outputType=json&pageSize=5

Response

Response Structure

The response will be in the format specified by the outputType parameter, either CSV or JSON, containing the requested list report data.

Example Response Body (JSON)

JSON
{
    "pageSize": 5,
    "total": 26,
    "dateTimeFormat": "dd/MMM/yy h:mm a",
    "dateFormat": "dd/MMM/yy",
    "timeZone": "Europe/Istanbul",
    "locale": "en-US",
    "viewFormat": "humanReadable",
    "isComposite": false,
    "columnsBy": "Status Duration",
    "multiVisitBehavior": "total",
    "calendar": {
        "clientKey": null,
        "holidays": [],
        "id": null,
        "isDefault": null,
        "name": "normalHours",
        "timeZone": "UTC",
        "workingTimes": [
            {
                "end": 86400000,
                "start": 0,
                "weekday": "SUNDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "MONDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "TUESDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "WEDNESDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "THURSDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "FRIDAY"
            },
            {
                "end": 86400000,
                "start": 0,
                "weekday": "SATURDAY"
            }
        ],
        "allWorkingDaysHaveEqualLengths": true,
        "calendarSuccessfullyLoaded": true,
        "dailyWorkingHours": 24.0,
        "is7x24Calendar": true
    },
    "dayLength": "24HourDays",
    "query": "( project = \"TP\" )",
    "trimHistoryStartDate": null,
    "trimHistoryEndDate": null,
    "reportDate": "06/Aug/25 11:04 AM",
    "version": "3.19.0.1",
    "includedStatuses": [
        {
            "deleted": false,
            "id": "10000",
            "name": "Backlog",
            "scope": {
                "project": null,
                "type": "GLOBAL"
            },
            "scopeProjectKey": null,
            "statusCategory": {
                "colorName": "blue-gray",
                "id": "2",
                "key": "new",
                "name": "To Do"
            }
        }
    ],
    "excludedStatuses": [],
    "deletedStatuses": [],
    "isAggregationType": false,
    "isOverall": false,
    "isAverage": false,
    "isSum": false,
    "isMedian": false,
    "isStddev": false,
    "drawAllChart": true,
    "table": {
        "header": {
            "headerColumns": [
                {
                    "id": "issuekey",
                    "value": "Key"
                },
                {
                    "id": "summary",
                    "value": "Summary"
                }
            ],
            "groupByColumns": [],
            "fieldColumns": [],
            "valueColumns": [
                {
                    "id": "10000",
                    "value": "Backlog",
                    "isConsolidated": false
                }
            ]
        },
        "body": {
            "rows": [
                {
                    "headerColumns": [
                        {
                            "id": "issuekey",
                            "value": "TP-26"
                        },
                        {
                            "id": "summary",
                            "value": "Issue 26"
                        }
                    ],
                    "groupByColumns": [],
                    "fieldColumns": [],
                    "valueColumns": [
                        {
                            "id": "10000",
                            "value": "187d 18h 15m 41s",
                            "raw": "16222541437",
                            "count": "1"
                        }
                    ],
                    "currentState": [
                        {
                            "id": "10000",
                            "value": "187d 18h 15m 41s",
                            "raw": "16222541437"
                        }
                    ]
                },
                {
                    "headerColumns": [
                        {
                            "id": "issuekey",
                            "value": "TP-25"
                        },
                        {
                            "id": "summary",
                            "value": "Issue 255"
                        }
                    ],
                    "groupByColumns": [],
                    "fieldColumns": [],
                    "valueColumns": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 3s",
                            "raw": "16742823623",
                            "count": "1"
                        }
                    ],
                    "currentState": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 3s",
                            "raw": "16742823623"
                        }
                    ]
                },
                {
                    "headerColumns": [
                        {
                            "id": "issuekey",
                            "value": "TP-24"
                        },
                        {
                            "id": "summary",
                            "value": "Issue 24"
                        }
                    ],
                    "groupByColumns": [],
                    "fieldColumns": [],
                    "valueColumns": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 12s",
                            "raw": "16742832774",
                            "count": "1"
                        }
                    ],
                    "currentState": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 12s",
                            "raw": "16742832774"
                        }
                    ]
                },
                {
                    "headerColumns": [
                        {
                            "id": "issuekey",
                            "value": "TP-23"
                        },
                        {
                            "id": "summary",
                            "value": "Issue 23"
                        }
                    ],
                    "groupByColumns": [],
                    "fieldColumns": [],
                    "valueColumns": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 22s",
                            "raw": "16742842632",
                            "count": "1"
                        }
                    ],
                    "currentState": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 22s",
                            "raw": "16742842632"
                        }
                    ]
                },
                {
                    "headerColumns": [
                        {
                            "id": "issuekey",
                            "value": "TP-22"
                        },
                        {
                            "id": "summary",
                            "value": "Issue 22"
                        }
                    ],
                    "groupByColumns": [],
                    "fieldColumns": [],
                    "valueColumns": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 30s",
                            "raw": "16742850727",
                            "count": "1"
                        }
                    ],
                    "currentState": [
                        {
                            "id": "10000",
                            "value": "193d 18h 47m 30s",
                            "raw": "16742850727"
                        }
                    ]
                }
            ]
        }
    },
    "forgeVersion": "3.19.0.1",
    "nextPageToken": "ChUjU3RyaW5nJlZGQT0lSW50Jk1qST0QBRjEnKPzhzMiEiggcHJvamVjdCA9ICJUUCIgKQ=="
}

Example Response Body (CSV)

CSV
"Key","Summary","Open","Deleted Status Test (x)","In Progress","Reopened","Resolved","Closed"
"TTP-29241","Test Kaydı - 35","374d 6h 39m 26s","-","235d 0h 47m 53s","-","-","-"
"TTP-29240","Test Kaydı - 34","-","-","-","-","-","2705d 6h 41m 42s"
"TTP-29239","Test Kaydı - 33","2705d 22h 52m 47s","-","-","-","-","-"

Response Codes

  • 200 OK: Returns a list report as text (CSV or JSON).

  • 400 Bad Request: When one or more of the required parameters are missing or one or more of the supplied parameter values are invalid.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.