getChangeLogsByIds method

Future<PageOfChangelogs> getChangeLogsByIds({
  1. required String issueIdOrKey,
  2. required IssueChangelogIds body,
})

Returns changelogs for an issue specified by a list of changelog IDs.

This operation can be accessed anonymously.

Permissions required:

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(),
  ));
}