action jira_get_change_logs { label: "Get changelogs" description: "Returns a [paginated](#pagination) list of all changelogs for an issue sorted by date, starting from the oldest.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is in.\n * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue." provider: jira method: GET path: "/rest/api/3/issue/{issueIdOrKey}/changelog" encoding: json input: { type: "object" properties: { issueIdOrKey: { type: "string" } maxResults: { type: "integer" format: "int32" } startAt: { type: "integer" format: "int32" } } required: ["issueIdOrKey"] additionalProperties: false } output: { type: "object" description: "A page of items." properties: { isLast: { type: "boolean" description: "Whether this is the last page." } maxResults: { type: "integer" format: "int32" description: "The maximum number of items that could be returned." } nextPage: { type: "string" format: "uri" description: "If there is another page of results, the URL of the next page." } self: { type: "string" format: "uri" description: "The URL of the page." } startAt: { type: "integer" format: "int64" description: "The index of the first item returned." } total: { type: "integer" format: "int64" description: "The number of items returned." } values: { type: "array" description: "The list of items." items: { type: "object" description: "A log of changes made to issue fields. Changelogs related to workflow associations are currently being deprecated." properties: { author: { description: "The user who made the change." type: "object" } created: { type: "string" format: "date-time" description: "The date on which the change took place." } historyMetadata: { description: "The history metadata associated with the changed." type: "object" } id: { type: "string" description: "The ID of the changelog." } items: { type: "array" description: "The list of items changed." items: { type: "object" description: "A change item." properties: { field: { type: "string" description: "The name of the field changed." } fieldId: { type: "string" description: "The ID of the field changed." } fieldtype: { type: "string" description: "The type of the field changed." } from: { type: "string" description: "The details of the original value." } fromString: { type: "string" description: "The details of the original value as a string." } to: { type: "string" description: "The details of the new value." } toString: { type: "string" description: "The details of the new value as a string." } } additionalProperties: false } } } additionalProperties: false } } } additionalProperties: false } }