> ## Documentation Index
> Fetch the complete documentation index at: https://docs.phishy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get attachments

> **Note: This endpoint is subject to change and may not be supported in future releases.** 

 Retrieves a list of all attachments



## OpenAPI

````yaml GET /attachments
openapi: 3.0.1
info:
  title: Attachment Management API
  description: API to manage attachments within the system
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: '{{BaseUrl}}'
security:
  - bearerAuth: []
paths:
  /attachments:
    get:
      description: Retrieves a list of all attachments
      operationId: getAttachments
      responses:
        '200':
          description: List of attachments retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Attachment'
components:
  schemas:
    Attachment:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the attachment
        name:
          type: string
          description: Name of the attachment
        content:
          type: string
          description: Content of the attachment, base64 encoded
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````