action atlassian_get_ids_of_worklogs_modified_since { label: "Get IDs of updated worklogs" description: "Returns a list of IDs and update timestamps for worklogs updated after a date and time.\n\nThis 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.\n\nThis resource does not return worklogs updated during the minute preceding the request.\n\n**[Permissions](#permissions) required:** Permission to access Jira, however, worklogs are only returned where either of the following is true:\n\n * the worklog is set as *Viewable by All Users*.\n * the user is a member of a project role or group with permission to view the worklog." provider: atlassian method: GET path: "/rest/api/3/worklog/updated" encoding: json input: { type: "object" properties: { expand: { type: "string" } since: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" description: "List of changed worklogs." properties: { lastPage: { type: "boolean" } nextPage: { type: "string" format: "uri" description: "The URL of the next list of changed worklogs." } self: { type: "string" format: "uri" description: "The URL of this changed worklogs list." } since: { type: "integer" format: "int64" description: "The datetime of the first worklog item in the list." } until: { type: "integer" format: "int64" description: "The datetime of the last worklog item in the list." } values: { type: "array" description: "Changed worklog list." items: { type: "object" description: "Details of a changed worklog." properties: { properties: { type: "array" description: "Details of properties associated with the change." items: { type: "object" description: "An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/)." properties: { key: { type: "string" description: "The key of the property. Required on create and update." } value: { description: "The value of the property. Required on create and update." type: "object" } } additionalProperties: false } } updatedTime: { type: "integer" format: "int64" description: "The datetime of the change." } worklogId: { type: "integer" format: "int64" description: "The ID of the worklog." } } additionalProperties: false } } } additionalProperties: false } }