Skip to main content
GET
/
v1
/
pipelines
/
{pipeline_id}
/
stages
List pipeline stages
curl --request GET \
  --url https://api.octolane.com/v1/pipelines/{pipeline_id}/stages \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "stages": [
      {
        "stage_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "pipeline_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "label": "Qualified",
        "stage_order": 2,
        "color": "#3B82F6",
        "is_active": true,
        "is_default": true,
        "probability": 50
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Public API key for the Octolane organization.

Path Parameters

pipeline_id
string<uuid>
required

Pipeline ID.

Response

Pipeline stages were returned.

success
boolean
Example:

true

message
string
data
object

Endpoint-specific response payload.