action confluence_get_avatar_image_by_owner { label: "Get avatar image by owner" description: "Returns the avatar image for a project or issue type.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * For system avatars, none.\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." provider: confluence method: GET path: "/rest/api/3/universal_avatar/view/type/{type}/owner/{entityId}" encoding: json input: { type: "object" properties: { entityId: { type: "string" } format: { type: "string" enum: ["png", "svg"] } size: { type: "string" enum: ["xsmall", "small", "medium", "large", "xlarge"] } type: { type: "string" enum: ["issuetype", "project"] } } required: ["entityId", "type"] additionalProperties: false } output: { type: "object" } }