Request to switch a project's workflow scheme

interface WorkflowSchemeProjectSwitchBean {
    mappingsByIssueTypeOverride?: MappingsByIssueTypeOverride[];
    projectId?: string;
    targetSchemeId?: string;
}

Hierarchy

  • Record<string, unknown>
    • WorkflowSchemeProjectSwitchBean

Properties

mappingsByIssueTypeOverride?: MappingsByIssueTypeOverride[]

The mappings for migrating issues from old statuses to new statuses when switching from one workflow scheme to another. This field is required if any statuses in the current project's workflows would no longer exist in the target workflow scheme. Each mapping defines how to update issues from an old status to the corresponding new status in the issue’s new workflow.

projectId?: string

The ID of the project to switch the workflow scheme for

10001
targetSchemeId?: string

The ID of the target workflow scheme to switch to

10002