jira.js
    Preparing search index...

    Function getAllSystemAvatars

    • Returns a list of system avatar details by owner type, where the owner types are issue type, project, user or priority.

      This operation can be accessed anonymously.

      Permissions required: None.

      Parameters

      • client: Client
      • parameters: { type: "priority" | "user" | string & {} | "project" | "issuetype" }
        • type: "priority" | "user" | string & {} | "project" | "issuetype"

          The avatar type.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              system?: {
                  fileName?: string;
                  id: string;
                  isDeletable?: boolean;
                  isSelected?: boolean;
                  isSystemAvatar?: boolean;
                  owner?: string;
                  urls?: Record<string, any>;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >