Skip to main content
POST
/
api
/
pipelines
/
stages
/
reassign
Reassign records from one pipeline stage to another
curl --request POST \
  --url https://your-instance.example.com/api/pipelines/stages/reassign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sourceStageId": "67f0a0b0c0d0e0f0a0b0c0d0",
  "targetStageId": "67f0a0b0c0d0e0f0a0b0c0d1"
}
'
{
  "success": true,
  "recordsTransferred": 7,
  "sourceStage": {
    "id": "67f0a0b0c0d0e0f0a0b0c0d0",
    "name": "New"
  },
  "targetStage": {
    "id": "67f0a0b0c0d0e0f0a0b0c0d1",
    "name": "Qualified"
  }
}

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.

Body

application/json
sourceStageId
string
required

Stage being retired — its contacts/applications are moved to targetStageId and the stage is deactivated.

targetStageId
string
required

Destination stage that receives the source stage's records; must belong to the same pipeline and be active.

Response

Stage records reassigned

success
boolean
recordsTransferred
number
sourceStage
object
targetStage
object