Function create_issues

Source
pub async fn create_issues(
    configuration: &Configuration,
    issues_update_bean: IssuesUpdateBean,
) -> Result<CreatedIssues, Error<CreateIssuesError>>
Expand description

Creates issues and, where the option to create subtasks is enabled in Jira, subtasks. Transitions may be applied, to move the issues or subtasks to a workflow step other than the default start step, and issue properties set. The content of each issue or subtask is defined using update and fields. The fields that can be set in the issue or subtask are determined using the Get create issue metadata. These are the same fields that appear on the issues’ create screens. Creating a subtask differs from creating an issue as follows: * issueType must be set to a subtask issue type (use Get create issue metadata to find subtask issue types). * parent the must contain the ID or key of the parent issue. Permissions required: Browse projects and Create issues project permissions for the project in which each issue or subtask is created.