getChangeLogsByIds method
Future<PageOfChangelogs>
getChangeLogsByIds({
- required String issueIdOrKey,
- required IssueChangelogIds body,
Returns changelogs for an issue specified by a list of changelog IDs.
This operation can be accessed anonymously.
Permissions required:
- Browse projects project permission for the project that the issue is in.
- If issue-level security is configured, issue-level security permission to view the issue.
Implementation
Future<PageOfChangelogs> getChangeLogsByIds(
{required String issueIdOrKey, required IssueChangelogIds body}) async {
return PageOfChangelogs.fromJson(await _client.send(
'post',
'rest/api/3/issue/{issueIdOrKey}/changelog/list',
pathParameters: {
'issueIdOrKey': issueIdOrKey,
},
body: body.toJson(),
));
}