jira.js
    Preparing search index...

    Function createIssueTypeScreenScheme

    • Creates an issue type screen scheme.

      Permissions required: Administer Jira global permission.

      Parameters

      • client: Client
      • parameters: {
            description?: string;
            issueTypeMappings: {
                issueTypeId: string;
                screenSchemeId: string;
                [key: string]: unknown;
            }[];
            name: string;
        }
        • Optionaldescription?: string

          The description of the issue type screen scheme. The maximum length is 255 characters.

        • issueTypeMappings: { issueTypeId: string; screenSchemeId: string; [key: string]: unknown }[]

          The IDs of the screen schemes for the issue type IDs and default. A default entry is required to create an issue type screen scheme, it defines the mapping for all issue types without a screen scheme.

        • name: string

          The name of the issue type screen scheme. The name must be unique. The maximum length is 255 characters.

      • Optionaloptions: RequestOptions

      Returns Promise<{ id: string; [key: string]: unknown }>