action confluence_get_attachment_thumbnail { label: "Get attachment thumbnail" description: "Returns the thumbnail of an attachment.\n\nTo return the attachment contents, use [Get attachment content](#api-rest-api-3-attachment-content-id-get).\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** For the issue containing the attachment:\n\n * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is in.\n * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue." provider: confluence method: GET path: "/rest/api/3/attachment/thumbnail/{id}" encoding: json input: { type: "object" properties: { fallbackToDefault: { type: "boolean" } height: { type: "integer" format: "int32" } id: { type: "string" } redirect: { type: "boolean" } width: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" } }