jira.js
    Preparing search index...

    Function getAvatars

    • Returns a list of all avatars

      Parameters

      • client: Client
      • parameters: { owningObjectId: string; type: string }
      • Optionaloptions: RequestOptions

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