sym.sdk.integrations.jira.search_issues

sym.sdk.integrations.jira.search_issues(jql: str, fields: Optional[List[str]] = None, expand: Optional[List[str]] = None) List[dict]

Returns a list of issues matching the given JQL query.

See Jira’s API docs for details.

Parameters
  • jql – A non-empty JQL expression.

  • fields – A list of fields to return for each issue. Use it to retrieve a subset of fields.

  • expand – An optional list of strings indicating what additional information about issues to include in the response.

Returns

A list of dictionaries representing Jira issues.

Raises

JiraError – If the JQL expression is empty.