Returns worklogs id and delete time of worklogs that was deleted since given time. The returns set of worklogs is limited to 1000 elements. This API will not return worklogs deleted during last minute.
integer
Returns a JSON representation of the worklog changes.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/api/2/worklog/deleted' \
--header 'Accept: application/json'
Returns worklogs for given worklog ids. Only worklogs to which the calling user has permissions, will be included in the result. The returns set of worklogs is limited to 1000 elements.
a JSON object containing ids of worklogs to return
array<integer>
Returns a JSON representation of the worklogs.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/worklog/list' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Returns worklogs id and update time of worklogs that was updated since given time. The returns set of worklogs is limited to 1000 elements. This API will not return worklogs updated during last minute.
integer
Returns a JSON representation of the worklog changes.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/api/2/worklog/updated' \
--header 'Accept: application/json'
Rate this page: