action atlassian_get_avatars { label: "Get avatars" description: "Returns the system and custom avatars for a project or issue type.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * for custom project avatars, *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project the avatar belongs to.\n * for custom issue type avatars, *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for at least one project the issue type is used in.\n * for system avatars, none." provider: atlassian method: GET path: "/rest/api/3/universal_avatar/type/{type}/owner/{entityId}" encoding: json input: { type: "object" properties: { entityId: { type: "string" } type: { type: "string" enum: ["project", "issuetype"] } } required: ["entityId", "type"] additionalProperties: false } output: { type: "object" description: "Details about system and custom avatars." properties: { custom: { type: "array" description: "Custom avatars list." 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." } } } } system: { type: "array" description: "System avatars list." 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 } }