Get changelog
jira_get_changelogFetch a Jira issue's change history—field, from/to values, author, and timestamp—and paginate from the tail to read recent activity.
Instructions
Read an issue's change history — field, from → to, author, created. Jira returns it OLDEST FIRST and that order is kept, so "what changed recently" means reading the TAIL: call once to learn data.total, then request startAt = total - maxResults. For the recent slice alone, expand: ["changelog"] on jira_get_issue is one call instead of two. One page per call; data.nextStartAt resumes a partial read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue | Yes | Issue key (PROJ-123) or numeric issue id. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| startAt | No | 0-based offset of the first row to return (default 0). Resume a partial read from the data.nextStartAt the previous call reported. | |
| maxResults | No | Rows per page; values above 100 are clamped to 100. One page is read per call. |