# EGroupware REST API for Timesheet Authentication is via Basic Auth with username and a password, or a token valid for: - either just the given user or all users - CalDAV/CardDAV Sync (REST API) - Timesheet application Following schema is used for JSON encoding of timesheets * @type: `timesheet` * id: integer ID * title: string * description: string (multiple lines) * start: UTCDateTime e.g. `2020-02-03T14:35:37Z` * duration: integer in minutes * quantity: double * unitprice: double * category: category object with a single(!) category-name e.g. `{"category name": true}` * owner: string with either email or username or integer ID * created: UTCDateTime e.g. `2020-02-03T14:35:37Z` * modified: UTCDateTime e.g. `2020-02-03T14:35:37Z` * modifier: string with either email or username or integer ID * pricelist: integer ID of projectmanager pricelist item * status: string * egroupware.org:customfields: custom-fields object, see other types * etag: string `":"` (double quotes are part of the etag!) ### Supported request methods and examples * **GET** to collections with an ```Accept: application/json``` header return all timesheets (similar to WebDAV PROPFIND)
Example: Getting all timesheets of a given user ``` curl https://example.org/egroupware/groupdav.php//timesheet/ -H "Accept: application/pretty+json" --user { "responses": { "//timesheet/1": { "@type": "timesheet", "id": 1, "title": "Test", "start": "2005-12-16T23:00:00Z", "duration": 150, "quantity": 2.5, "unitprice": 50, "category": { "other": true }, "owner": "ralf@boulder.egroupware.org", "created": "2005-12-16T23:00:00Z", "modified": "2011-06-08T10:51:20Z", "modifier": "ralf@boulder.egroupware.org", "status": "genehmigt", "etag": "1:1307537480" }, "//timesheet/140": { "@type": "timesheet", "id": 140, "title": "Test Ralf aus PM", "start": "2016-08-22T12:12:00Z", "duration": 60, "quantity": 1, "owner": "ralf@boulder.egroupware.org", "created": "2016-08-22T12:12:00Z", "modified": "2016-08-22T13:13:22Z", "modifier": "ralf@boulder.egroupware.org", "egroupware.org:customfields": { "auswahl": { "value": [ "3" ], "type": "select", "label": "Auswählen", "values": { "3": "Three", "2": "Two", "1": "One" } } }, "etag": "140:1471878802" }, ... } ```
Following GET parameters are supported to customize the returned properties: - props[]= eg. props[]=getetag to return only the ETAG (multiple DAV properties can be specified) Default for timesheet collections is to only return address-data (JsContact), other collections return all props. - sync-token= to only request change since last sync-token, like rfc6578 sync-collection REPORT - nresults=N limit number of responses (only for sync-collection / given sync-token parameter!) this will return a "more-results"=true attribute and a new "sync-token" attribute to query for the next chunk The GET parameter `filters` allows to filter or search for a pattern in timesheets of a user: - `filters[search]=` searches for `` in the whole timesheet like the search in the GUI - `filters[search][%23]=` filters by a custom-field value - `filters[]=` filters by a DB-column name and value
Example: Getting just ETAGs and displayname of all timesheets of a user ``` curl -i 'https://example.org/egroupware/groupdav.php//timesheet/?props[]=getetag&props[]=displayname' -H "Accept: application/pretty+json" --user { "responses": { "/ralf/timesheet/1": {"displayname":"Test","getetag":"\"1:1307537480\""}, "/ralf/timesheet/140": {"displayname":"Test Ralf aus PM","getetag":"\"140:1471878802\""}, } } ```
Example: Start using a sync-token to get only changed entries since last sync #### Initial request with empty sync-token and only requesting 10 entries per chunk: ``` curl 'https://example.org/egroupware/groupdav.php/timesheet/?sync-token=&nresults=10&props[]=displayname' -H "Accept: application/pretty+json" --user { "responses": { "/timesheet/2050": "Frau Margot Test-Notifikation", "/timesheet/2384": "Test Tester", "/timesheet/5462": "Margot Testgedöns", "/timesheet/2380": "Frau Test Defaulterin", "/timesheet/5474": "Noch ein Neuer", "/timesheet/5575": "Mr New Name", "/timesheet/5461": "Herr Hugo Kurt Müller Senior", "/timesheet/5601": "Steve Jobs", "/timesheet/5603": "Ralf Becker", "/timesheet/1838": "Test Tester" }, "more-results": true, "sync-token": "https://example.org/egroupware/groupdav.php/timesheet/1400867824" } ``` #### Requesting next chunk: ``` curl 'https://example.org/egroupware/groupdav.php/timesheet/?sync-token=https://example.org/egroupware/groupdav.php/timesheet/1400867824&nresults=10&props[]=displayname' -H "Accept: application/pretty+json" --user { "responses": { "/timesheet/1833": "Default Tester", "/timesheet/5597": "Neuer Testschnuffi", "/timesheet/5593": "Muster Max", "/timesheet/5628": "2. Test Contact", "/timesheet/5629": "Testen Tester", "/timesheet/5630": "Testen Tester", "/timesheet/5633": "Testen Tester", "/timesheet/5635": "Test4 Tester", "/timesheet/5638": "Test Kontakt", "/timesheet/5636": "Test Default" }, "more-results": true, "sync-token": "https://example.org/egroupware/groupdav.php/timesheet/1427103057" } ```
Example: Requesting only changes since last sync #### ```sync-token``` from last sync need to be specified (note the null for a deleted resource!) ``` curl 'https://example.org/egroupware/groupdav.php/timesheet/?sync-token=https://example.org/egroupware/groupdav.php/timesheet/1400867824' -H "Accept: application/pretty+json" --user { "responses": { "/timesheet/5597": null, "/timesheet/5593": { TODO .... } }, "sync-token": "https://example.org/egroupware/groupdav.php/timesheet/1427103057" } ```
* **GET** requests with an ```Accept: application/json``` header can be used to retrieve single resources / JsTimesheet schema
Example: GET request for a single resource showcasing available fieldes ``` curl 'https://example.org/egroupware/groupdav.php/timesheet/140' -H "Accept: application/pretty+json" --user { "@type": "timesheet", "id": 140, "title": "Test Ralf aus PM", "start": "2016-08-22T12:12:00Z", "duration": 60, "quantity": 1, "owner": "ralf@boulder.egroupware.org", "created": "2016-08-22T12:12:00Z", "modified": "2016-08-22T13:13:22Z", "modifier": "ralf@boulder.egroupware.org", "egroupware.org:customfields": { "auswahl": { "value": [ "3" ], "type": "select", "label": "Auswählen", "values": { "3": "Three", "2": "Two", "1": "One" } } }, "etag": "140:1471878802" } ```
* **POST** requests to collection with a ```Content-Type: application/json``` header add new entries in timesheet collections (Location header in response gives URL of new resource)
Example: POST request to create a new resource ``` cat </timesheet/' -X POST -d @- -H "Content-Type: application/json" --user { TODO } EOF HTTP/1.1 201 Created Location: https://example.org/egroupware/groupdav.php//timesheet/1234 ```
* **PUT** requests with a ```Content-Type: application/json``` header allow modifying single resources (requires to specify all attributes!)
Example: PUT request to update a resource ``` cat </timesheet/1234' -X PUT -d @- -H "Content-Type: application/json" --user { TODO } EOF HTTP/1.1 204 No Content ```
* **PATCH** request with a ```Content-Type: application/json``` header allow to modify a single resource by only specifying changed attributes as a [PatchObject](https://www.rfc-editor.org/rfc/rfc8984.html#type-PatchObject)
Example: PATCH request to modify a contact with partial data ``` cat </timesheet/1234' -X PATCH -d @- -H "Content-Type: application/json" --user { TODO } EOF HTTP/1.1 204 No content ```
* **DELETE** requests delete single resources > one can use ```Accept: application/pretty+json``` to receive pretty-printed JSON eg. for debugging and exploring the API