{ "opencollection": "1.0.0", "info": { "name": "Clockodo Absences Entries API", "version": "2" }, "request": { "auth": { "type": "apikey", "key": "X-ClockodoApiKey", "value": "{{X-ClockodoApiKey}}", "placement": "header" } }, "items": [ { "info": { "name": "Entries", "type": "folder" }, "items": [ { "info": { "name": "List time entries", "type": "http" }, "http": { "method": "GET", "url": "https://my.clockodo.com/api/v2/entries", "params": [ { "name": "time_since", "value": "", "type": "query" }, { "name": "time_until", "value": "", "type": "query" }, { "name": "filter[users_id]", "value": "", "type": "query" }, { "name": "filter[customers_id]", "value": "", "type": "query" }, { "name": "filter[projects_id]", "value": "", "type": "query" } ] }, "docs": "Returns time-tracking entries filtered by date range, user, customer, project, or service." }, { "info": { "name": "Create a time entry", "type": "http" }, "http": { "method": "POST", "url": "https://my.clockodo.com/api/v2/entries", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new time-tracking entry." }, { "info": { "name": "Get a time entry", "type": "http" }, "http": { "method": "GET", "url": "https://my.clockodo.com/api/v2/entries/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a time entry" }, { "info": { "name": "Update a time entry", "type": "http" }, "http": { "method": "PUT", "url": "https://my.clockodo.com/api/v2/entries/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a time entry" }, { "info": { "name": "Delete a time entry", "type": "http" }, "http": { "method": "DELETE", "url": "https://my.clockodo.com/api/v2/entries/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a time entry" } ] } ], "bundled": true }