jira.js
    Preparing search index...

    Function updateScreenScheme

    • Updates a screen scheme. Only screen schemes used in classic projects can be updated.

      Permissions required: Administer Jira global permission.

      Parameters

      • client: Client
      • parameters: {
            description?: string;
            name?: string;
            screens?: {
                create?: string;
                default?: string;
                edit?: string;
                view?: string;
                [key: string]: unknown;
            };
            screenSchemeId: string;
        }
        • Optionaldescription?: string

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

        • Optionalname?: string

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

        • Optionalscreens?: {
              create?: string;
              default?: string;
              edit?: string;
              view?: string;
              [key: string]: unknown;
          }
          • Optionalcreate?: string

            The ID of the create screen. To remove the screen association, pass a null.

          • Optionaldefault?: string

            The ID of the default screen. When specified, must include a screen ID as a default screen is required.

          • Optionaledit?: string

            The ID of the edit screen. To remove the screen association, pass a null.

          • Optionalview?: string

            The ID of the view screen. To remove the screen association, pass a null.

        • screenSchemeId: string

          The ID of the screen scheme.

      • Optionaloptions: RequestOptions

      Returns Promise<void>