GET
/
api
/
v1
/
stages
/
partner-stages
Get Partner Stages
curl --request GET \
  --url https://app.journeybee.io/api/v1/stages/partner-stages \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "uuid": "stage-uuid-123",
    "label": "Prospecting",
    "series": 1,
    "phase": "discovery",
    "partner_type": "referral",
    "company_id": 123
  },
  {
    "id": 2,
    "label": "Active Partnership",
    "series": 2,
    "phase": "active",
    "partner_type": "referral"
  }
]

Authentication

curl -X GET "https://app.journeybee.io/api/v1/stages/partner-stages" \
  -H "Authorization: Bearer your-api-key-uuid" \
  -H "Content-Type: application/json"

Response Schema

stages
array
Array of partner stage objects

Example Response

[
  {
    "id": 1,
    "uuid": "stage-uuid-123",
    "label": "Prospecting",
    "series": 1,
    "phase": "discovery",
    "partner_type": "referral",
    "company_id": 123
  },
  {
    "id": 2,
    "label": "Active Partnership",
    "series": 2,
    "phase": "active",
    "partner_type": "referral"
  }
]

Notes

  • Requires API key with read_access permission
  • Partner stages track the partnership relationship lifecycle
  • Different stages for referral vs reseller partner types