Project List
Method for viewing the list of projects the current user is participating in.
Request Parameters
GET /api/clients/v1/projects/
Headers
- Content-Type: application/json
- Authorization: Bearer
$access_token
Response parameters
Examples
200 OK
Project list
[
{
"id": 4,
"owner_id": 22,
"name": "personal_project"
},
{
"id": 5,
"owner_id": 22,
"name": "company_project"
}
]
401 Unauthorized
Missing or invalid authentification credentials
{
"detail": "Given token not valid for any token type",
"code": "token_not_valid",
"messages": [
{
"token_class": "AccessToken",
"token_type": "access",
"message": "Token is invalid or expired"
}
]
}