Return the list of projects currently running.

GET /data/projects/open

Most of the time, past projects are not needed.

Responses

  • 200 application/json

    All running projects

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • project_status_id string(uuid)
GET /data/projects/open
curl \
 --request GET 'http://api.example.com/data/projects/open' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "project_status_id": "string"
  }
]