jira.js
    Preparing search index...

    Function getAllProjectAvatars

    • Returns all project avatars, grouped by system and custom avatars.

      This operation can be accessed anonymously.

      Permissions required: Browse projects project permission for the project.

      Parameters

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

          The ID or (case-sensitive) key of the project.

      • Optionaloptions: RequestOptions

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