Skip to main content
GET
/
api
/
pipelines
/
stages
/
{stageId}
/
usage
Check pipeline stage usage and reassignment alternatives
curl --request GET \
  --url https://your-instance.example.com/api/pipelines/stages/{stageId}/usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "stageId": "67f0a0b0c0d0e0f0a0b0c0d0",
  "stageName": "New",
  "pipelineType": "Contact",
  "isInUse": true,
  "recordsCount": 7,
  "hasAlternatives": true,
  "alternatives": [
    {
      "id": "67f0a0b0c0d0e0f0a0b0c0d1",
      "name": "Qualified",
      "color": "#10B981"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

stageId
string
required

Response

Pipeline stage usage returned

success
boolean
stageId
string
stageName
string
pipelineType
enum<string>
Available options:
Contact,
Application
isInUse
boolean
recordsCount
number
hasAlternatives
boolean
alternatives
object[]