Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The JSON Data Feed link allows you to integrate Time in Status add-on data into third-party analytics systems or other external systems.

1. Go to the Time in the Status report, select the desired configuration settings you need, and click the “Save as” button.

...

3. Select the Preset you want to receive as a the JSON Data Feed link.

If you do not have any presets, go to the Save&Load tab and create your first preset. How to create a preset?

...

Info

Note. Do not give the link or token to third parties. The JSON Data Feed link can be deleted if needed.

There are two versions of how the JSON Data Feed returns the calculated data. The result of data calculation returns in the Format 2 by default. It looks like it’s displayed on the screen below:

...

Code Block
Object<
     /* Calculation result */ result: Object<
         issue_key: Object<
             status_id: number,
         >
     >
     /* Additional data */  
     statuses: Array<Object<
         label: string, 
         value: string,
     >>
     /* Task list */  
     issues: Array<Issue>
>
Info

Note. All JSON Data Feed links that have been created before the implementation of the Version 2, display information as it’s in the Data Feed version 1. The Version 1 is outdated, but you can update it to the Version 2 whenever you need it. To switch between the Data Feed formats, you should replace v2 with v1 in the link.

...

Info

Note. When you change the settings of the preset from which the JSON Data Feed link is created - the settings of the JSON Data Feed link will change according to the preset.

Info

Note. Limitations of the JSON Data feed link:

  1. Is available for such reports: Time in Status, Assignee time, Status Count, Transition Count, Status Entrance Date;

  2. Only the first 500 issues are displayed. Please, edit the sample parameters if you haven’t get the result of the tasks you expected to see.

...