Thanks to visit codestin.com
Credit goes to docs.flowdash.com

Skip to main content Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App

Stages API

GET List Stages

To fetch the stages for a given workflow, issue a GET request to the stages endpoint:

https://app.flowdash.com/api/v1/workflows/<workflow-id>/stages

For example,

curl https://app.flowdash.com/api/v1/workflows/<workflow-id>/stages \
    --header 'Authorization: Bearer YOUR_API_KEY'

Example response

[
   {
      "name" : "Not Started"
   },
   {
      "name" : "In Progress"
   },
   {
      "name" : "Done"
   }
]