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 4 Current »

UNDER DEVELOPMENT

The following endpoint can be used to grab progressions available to a given resource.

GET /:resource/:resource_id/progressions

Where resource and resource_id describe the object you wish to progress. A list of available resources can be found on the Progressions page.

Handling the response

Below is a table of response fields.

idunsignedThe unique identifier for the progression. This can then be used at the run progression endpoint for this object if you wish to move to the linked status.
titlestringThe title you have assigned to the progression. e.g, "Open easy issue".
statusobjectThe status the progression will move to. This includes the status id, title, color and standing.

Sample Response

GET /issues/300/progressions.xml
<data>
  <meta message="Everything executed as expected." more_info="https://affinitylive.jira.com/wiki/display/APIS/Status+Codes#ok" status="ok"/>
  <response id="133" title="New Ticket">
    <status id="2" color="yellow" standing="open" title="Open"/>
  </response>
  <response id="139" title="Close Ticket">
    <status id="4" color="blue" standing="closed" title="Closed"/>
  </response>
  <response id="140" title="Waiting For Client">
    <status id="6" color="orange" standing="open" title="Waiting for Client"/>
  </response>
</data>

For a complete sample, please see the progressions page.

  • No labels