searchForIssuesUsingJqlPost method
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:
- Browse projects project permission for the project containing the issue.
- If issue-level security is configured, issue-level security permission to view the issue.
Implementation
Future<SearchResults> searchForIssuesUsingJqlPost(
{required SearchRequestBean body}) async {
return SearchResults.fromJson(await _client.send(
'post',
'rest/api/3/search',
body: body.toJson(),
));
}