action jira_get_all_system_avatars { label: "Get system avatars by type" description: "Returns a list of system avatar details by owner type, where the owner types are issue type, project, user or priority.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: jira method: GET path: "/rest/api/3/avatar/{type}/system" encoding: json input: { type: "object" properties: { type: { type: "string" enum: ["issuetype", "project", "user", "priority"] } } required: ["type"] additionalProperties: false } output: { type: "object" description: "List of system avatars." properties: { system: { type: "array" description: "A list of avatar details." items: { type: "object" description: "Details of an avatar." required: ["id"] properties: { fileName: { type: "string" description: "The file name of the avatar icon. Returned for system avatars." } id: { type: "string" description: "The ID of the avatar." } isDeletable: { type: "boolean" description: "Whether the avatar can be deleted." } isSelected: { type: "boolean" description: "Whether the avatar is used in Jira. For example, shown as a project's avatar." } isSystemAvatar: { type: "boolean" description: "Whether the avatar is a system avatar." } owner: { type: "string" description: "The owner of the avatar. For a system avatar the owner is null (and nothing is returned). For non-system avatars this is the appropriate identifier, such as the ID for a project or the account ID for a user." } urls: { type: "object" description: "The list of avatar icon URLs." } } } } } additionalProperties: false } }