jira.js
    Preparing search index...

    Function getApplicationProperties

    • Returns an application property.

      Parameters

      • client: Client
      • Optionalparameters: { key?: string; keyFilter?: string; permissionLevel?: string }
        • Optionalkey?: string

          A String containing the property key.

        • OptionalkeyFilter?: string

          When fetching a list allows the list to be filtered by the property's start of key e.g. "jira.lf.*" whould fetch only those permissions that are editable and whose keys start with * "jira.lf.". This is a regex.

        • OptionalpermissionLevel?: string

          When fetching a list specifies the permission level of all items in the list see ApplicationPropertiesService.EditPermissionLevel

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              allowedValues?: string[];
              defaultValue?: string;
              desc?: string;
              example?: string;
              id?: string;
              key?: string;
              name?: string;
              type?: string;
              value?: string;
              [key: string]: unknown;
          }[],
      >