jira.js
    Preparing search index...

    Function getEditIssueMeta

    • Returns the meta data for editing an issue. The fields in the editmeta correspond to the fields in the edit screen for the issue. Fields not in the screen will not be in the editmeta.

      Parameters

      • client: Client
      • parameters: { issueIdOrKey: string }
        • issueIdOrKey: string

          Issue id or key

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              fields?: Record<
                  string,
                  {
                      allowedValues?: Record<string, any>[];
                      autoCompleteUrl?: string;
                      defaultValue?: Record<string, any>;
                      fieldId?: string;
                      hasDefaultValue?: boolean;
                      name?: string;
                      operations?: string[];
                      required?: boolean;
                      schema?: {
                          custom?: string;
                          customId?: number;
                          items?: string;
                          system?: string;
                          type?: string;
                          [key: string]: unknown;
                      };
                      [key: string]: unknown;
                  },
              >;
              [key: string]: unknown;
          },
      >