Return all projects listed in database.

GET /data/projects/all

Ensure that user has at least the manager level before that.

Responses

  • 200 application/json

    All projects listed in database

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