Function get_issue

Source
pub async fn get_issue(
    configuration: &Configuration,
    issue_id_or_key: &str,
    fields: Option<Vec<String>>,
    fields_by_keys: Option<bool>,
    expand: Option<&str>,
    properties: Option<Vec<String>>,
    update_history: Option<bool>,
) -> Result<IssueBean, Error<GetIssueError>>
Expand description

Returns the details for an issue. The issue is identified by its ID or key, however, if the identifier doesn’t match an issue, a case-insensitive search and check for moved issues is performed. If a matching issue is found its details are returned, a 302 or other redirect is not returned. The issue key returned in the response is the key of the issue found. 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.