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

# Upload a customer ticket reply draft attachment for the partner organization



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/support/customer-tickets/{ticketId}/reply-drafts/{draftId}/attachments
openapi: 3.1.0
info:
  title: Nuvera API
  description: Nuvera Payment Platform REST API
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:45000
security: []
tags: []
paths:
  /api/v1/support/customer-tickets/{ticketId}/reply-drafts/{draftId}/attachments:
    post:
      tags:
        - Support
      summary: >-
        Upload a customer ticket reply draft attachment for the partner
        organization
      operationId: SupportController_uploadCustomerTicketReplyDraftAttachment
      parameters:
        - name: ticketId
          required: true
          in: path
          schema:
            type: string
        - name: draftId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
              required:
                - file
      responses:
        '201':
          description: ''
      security:
        - x-api-key: []
          signed-request: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Nuvera API application secret key
    signed-request:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: RS256 per-request signed JWT

````