curl --location --request POST 'https://api.yourapp.com/v1/public/stages.list' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "roadmapId": "roadmap-uuid" }'
{ "data": [ { "id": "stage-uuid-1", "name": "Under Consideration", "roadmapId": "roadmap-uuid", "order": 1, "meta": { "isPrivate": false, "disableModeration": false, "color": "#E5E7EB" }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }, { "id": "stage-uuid-2", "name": "Planned", "roadmapId": "roadmap-uuid", "order": 2, "meta": { "isPrivate": false, "disableModeration": false, "color": "#3B82F6" }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }, { "id": "stage-uuid-3", "name": "In Progress", "roadmapId": "roadmap-uuid", "order": 3, "meta": { "isPrivate": false, "disableModeration": false, "color": "#F59E0B" }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }, { "id": "stage-uuid-4", "name": "Completed", "roadmapId": "roadmap-uuid", "order": 4, "meta": { "isPrivate": false, "disableModeration": false, "color": "#10B981" }, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" } ] }
Get all stages for a roadmap. Returns public stages ordered by their display order.
Authorization: Bearer YOUR_API_KEY
Show Stage Object
Show Meta Properties
isPrivate: false
Was this page helpful?