Genbase
ApiProject

Get all projects

GET
/project

Authorization

AuthorizationRequiredBearer <token>

JWT Token for authenticated users (obtained via /auth/jwt/login).

In: header

curl -X GET "http://localhost:8000/project/" \
  -H "Authorization: Bearer <token>"

Successful Response

[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "string",
    "created_at": "2019-08-24T14:15:22Z"
  }
]