Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence attachments

List attachment metadata for a Confluence page. Never follows download or thumbnail redirects.

Agent markdown

attachments.list · Confluence · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:attachment:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_idstringYesminLength 1; maxLength 64
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
attachmentsarray<object>YesmaxItems 100
attachments[]objectYesadditionalProperties false
attachments[].idstringYesminLength 1; maxLength 64
attachments[].titlestringYesmaxLength 512
attachments[].media_typestringNomaxLength 255
attachments[].file_sizeintegerNominimum 0; maximum 1073741824
attachments[].statusstringNominLength 1; maxLength 64
attachments[].created_atstringNomaxLength 64
attachments[].updated_atstringNomaxLength 64
attachments[].urlstringNomaxLength 2048
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "page_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "title": {
            "type": "string",
            "maxLength": 512
          },
          "media_type": {
            "type": "string",
            "maxLength": 255
          },
          "file_size": {
            "type": "integer",
            "minimum": 0,
            "maximum": 1073741824
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "created_at": {
            "type": "string",
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "maxLength": 64
          },
          "url": {
            "type": "string",
            "maxLength": 2048
          }
        },
        "required": [
          "id",
          "title"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "attachments"
  ]
}