provider Issue worklogs GET
/rest/api/3/worklog/deleted @utdk/jira
/rest/api/3/worklog/deleted Get IDs of deleted worklogs
Returns a list of IDs and delete timestamps for worklogs deleted after a date and time.
This resource is paginated, with a limit of 1000 worklogs per page. Each page lists worklogs from oldest to youngest. If the number of items in the date range exceeds 1000, `until` indicates the timestamp of the youngest item on the page. Also, `nextPage` provides the URL for the next page of worklogs. The `lastPage` parameter is set to true on the last page of worklogs.
This resource does not return worklogs deleted during the minute preceding the request.
**[Permissions](#permissions) required:** Permission to access Jira.
- since query
- The date and time, as a UNIX timestamp in milliseconds, after which deleted worklogs are returned.
- integer
Try it
Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import jira from '@utdk/jira';
await jira.getidsofworklogsdeletedsince({
"since": 0
})