ProjectsDetailsById - maxkunitsa/timeTracker GitHub Wiki
#Getting project details
Returns the specific project details.
Note: Authentication required
GET /projects/{project-id}
-- #####Path Parameters
Name | Description |
---|---|
project-id | Id of the project |
-- #####Response Example (success)
{
"id": "563f196764cb5c935d44bec6",
"name": "Project Name"
}
-- #####Response Example (error)
{
"message": "Project with 563f196764cb5c935dd4bec6 id does not exists"
}