PATCH
/
api
/
v1
/
stages
/
partner-stages
Update Partner Stages (Bulk)
curl --request PATCH \
  --url https://app.journeybee.io/api/v1/stages/partner-stages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "stages": [
    {
      "id": 123,
      "label": "<string>",
      "series": 123,
      "phase": "<string>"
    }
  ]
}'
{
  "updated": [
    {}
  ]
}

Authentication

curl -X PATCH "https://app.journeybee.io/api/v1/stages/partner-stages" \
  -H "Authorization: Bearer your-api-key-uuid" \
  -H "Content-Type: application/json" \
  -d '[{"id": 1, "label": "Updated Prospecting", "series": 1}, {"id": 2, "label": "Active Partnership", "series": 2}]'

Request Body Schema

stages
array
required
Array of stage updates

Response Schema

updated
array
Array of updated stage IDs

Notes

  • Requires API key with write_access permission
  • Bulk operation for reordering stages