searchForIssuesUsingJqlPost method

Future<SearchResults> searchForIssuesUsingJqlPost({
  1. required SearchRequestBean body,
})

Searches for issues using JQL.

There is a GET version of this resource that can be used for smaller JQL query expressions.

This operation can be accessed anonymously.

Permissions required: Issues are included in the response where the user has:

Implementation

Future<SearchResults> searchForIssuesUsingJqlPost(
    {required SearchRequestBean body}) async {
  return SearchResults.fromJson(await _client.send(
    'post',
    'rest/api/3/search',
    body: body.toJson(),
  ));
}