jira.js
    Preparing search index...

    Function moveScreenTabField

    • Moves a screen tab field.

      If after and position are provided in the request, position is ignored.

      Permissions required: Administer Jira global permission.

      Parameters

      • client: Client
      • parameters: {
            after?: string;
            id: string;
            position?: string & {} | "Earlier" | "Later" | "First" | "Last";
            screenId: number;
            tabId: number;
        }
        • Optionalafter?: string

          The ID of the screen tab field after which to place the moved screen tab field. Required if position isn't provided.

        • id: string

          The ID of the field.

        • Optionalposition?: string & {} | "Earlier" | "Later" | "First" | "Last"

          The named position to which the screen tab field should be moved. Required if after isn't provided.

        • screenId: number

          The ID of the screen.

        • tabId: number

          The ID of the screen tab.

      • Optionaloptions: RequestOptions

      Returns Promise<void>