REST API Specification
Id | Workload | Project Name | Employee | Day |
---|---|---|---|---|
WL.0001 | 1h | TheProject | John | 2014/02/01 |
WL.0002 | 2h | OtherProject | John | 2014/02/14 |
WL.0003 | 3h | TheProject | Jane | 2014/02/24 |
WL.0004 | 4h | YetAnotherProject | Jane | 2014/03/01 |
/endpoints/v1/projects/TheProject/work-log/entries
{ "items": [ { "link": "/endpoints/v1/work-log/entries/WL.0001", "id": "WL.0001", "workload": "1h", "projectName": "TheProject", "employee": "John", "day": "2014/02/01" }, { "link": "/endpoints/v1/work-log/entries/WL.0003", "id": "WL.0003", "workload": "3h", "projectName": "TheProject", "employee": "Jane", "day": "2014/02/24" } ] }
Id | Workload | Project Name | Employee | Day |
---|---|---|---|---|
WL.0001 | 1h | TheProject | John | 2014/02/01 |
WL.0002 | 2h | OtherProject | John | 2014/02/14 |
WL.0003 | 3h | TheProject | Jane | 2014/02/24 |
WL.0004 | 4h | YetAnotherProject | Jane | 2014/03/01 |
/endpoints/v1/employee/Jane/work-log/entries
{ "items": [ { "link": "/endpoints/v1/work-log/entries/WL.0003", "id": "WL.0003", "workload": "3h", "projectName": "TheProject", "employee": "Jane", "day": "2014/02/24" }, { "link": "/endpoints/v1/work-log/entries/WL.0004", "id": "WL.0004", "workload": "4h", "projectName": "YetAnotherProject", "employee": "Jane", "day": "2014/03/01" } ] }
Id | Workload | Project Name | Employee | Day |
---|---|---|---|---|
WL.0001 | 1h | TheProject | John | 2013/02/01 |
WL.0002 | 2h | OtherProject | John | 2014/02/14 |
WL.0003 | 3h | TheProject | Jane | 2014/02/24 |
WL.0004 | 4h | YetAnotherProject | Jane | 2014/03/01 |
/endpoints/v1/calendar/2014/02/work-log/entries
{ "items": [ { "link": "/endpoints/v1/work-log/entries/WL.0002", "id": "WL.0002", "workload": "2h", "projectName": "OtherProject", "employee": "John", "day": "2014/02/14" }, { "link": "/endpoints/v1/work-log/entries/WL.0003", "id": "WL.0003", "workload": "3h", "projectName": "TheProject", "employee": "Jane", "day": "2014/02/24" } ] }