Table of Contents |
---|
...
Create, Update, View or Delete worklogs with the same restrictions and rules as you would within the app.
All requests need to be made to this base URL:
https://jttp-cloud.everit.biz/timetracker/api/<REST_API_VERSION>latest/public
Create worklog POST /worklog
...
Header Parameter | Optional | Description |
---|---|---|
x-everit-jwt | false | JWT token, see: REST API |
x-requested-by | false | CSRF protection parameter. Can be empty or any dummy text. |
x-timezone | true | The time zone of the user, for eg.: ' Europe/Budapest'. If not specified defaults to UTC. |
...
POST URL: TIME_TRACKER_BASE_URL/timetracker/api/22latest/public/worklog
Example post body:
...
Header Parameter | Optional | Description |
---|---|---|
x-everit-jwt | false | JWT token, see: REST API |
x-requested-by | false | CSRF protection paramter. |
x-timezone | true | The time zone of the user, for eg.: ' Europe/Budapest'. If not specified defaults to UTC. |
...
PATCH URL: TIME_TRACKER_BASE_URL/timetracker/api/22latest/public/worklog
Example patch body:
...
Header Parameter | Optional | Description |
---|---|---|
x-everit-jwt | false | JWT token, see: REST API |
x-timezone | true | The time zone of the user, for eg.: ' Europe/Budapest'. If not specified defaults to UTC. |
...
GET URL: TIME_TRACKER_BASE_URL/timetracker/api/22latest/public/worklog?worklogId=155
...
Header Parameter | Optional | Description |
---|---|---|
x-everit-jwt | false | JWT token, see: REST API |
x-requested-by | false | CSRF protection paramter. |
x-timezone | true | The time zone of the user, for eg.: ' Europe/Budapest'. If not specified defaults to UTC. |
...
DELETE URL: TIME_TRACKER_BASE_URL/timetracker/api/22latest/public/worklog?worklogId=123
...