action atlassian_get_attachment_meta { label: "Get Jira attachment settings" description: "Returns the attachment settings, that is, whether attachments are enabled and the maximum attachment size allowed.\n\nNote that there are also [project permissions](https://confluence.atlassian.com/x/yodKLg) that restrict whether users can create and delete attachments.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: atlassian method: GET path: "/rest/api/3/attachment/meta" encoding: json output: { type: "object" description: "Details of the instance's attachment settings." properties: { enabled: { type: "boolean" description: "Whether the ability to add attachments is enabled." } uploadLimit: { type: "integer" format: "int64" description: "The maximum size of attachments permitted, in bytes." } } additionalProperties: false } }