List Pipeline Stages
Lists the sales pipeline stages configured in the workspace.
Authentication: X-API-KEY header (see Authentication).
Request
curl -X GET https://api.withmoxie.com/public/action/pipelineStages/list \
-H "X-API-KEY: your_api_key_here"
Response
Returns an array of Stage objects.
[
{
"id": "stage_new",
"label": "New Lead",
"hexColor": "#5C00E2",
"isWon": false,
"stageType": "OPEN"
},
{
"id": "stage_won",
"label": "Won",
"hexColor": "#00A861",
"isWon": true,
"stageType": "WON"
}
]