Stagesets (Pipelines)

Get a list of stages

Returns active stages from active pipelines that are visible to the authenticated user. OAuth access tokens require the read scope. When pipeline visibility is enabled, stages in restricted pipelines are omitted unless the authenticated user is an administrator or the pipeline is shared directly or through a team.

get/stages

Response

Stages visible to the authenticated user.

linksobject required

Top-level relationship metadata for stage pipelines.

Example response

{
  "meta": {
    "instanceId": "12345"
  },
  "stages": [
    {
      "id": "1-stages",
      "name": "Prospecting",
      "description": "Identify and qualify potential customers",
      "position": 1,
      "links": {
        "stageset": "1-stagesets"
      }
    }
  ]
}

Changes