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

# Duplicate Proposal

> Duplicate an existing proposal.

**Required scope:** `write`



## OpenAPI

````yaml /openapi/openapi-external.json post /proposals/{proposal_id}/duplicate
openapi: 3.1.0
info:
  title: Quikly.ai External API
  version: 1.0.0
  description: >-
    REST API for external integrations with Quikly.ai. Authenticate using an API
    key passed in the X-API-Key header. Use these endpoints from n8n, Zapier,
    custom scripts, or any HTTP client.
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: Proposals
    description: Create, read, update, and manage client proposals.
  - name: Profile
    description: Read and update the authenticated user's profile.
  - name: Templates
    description: Manage reusable proposal templates.
  - name: AI Services
    description: >-
      AI-powered analysis: rate recommendations, brief analysis,
      differentiators.
  - name: Public API
  - name: Usage
    description: Query API usage and quota information.
  - name: Webhooks
    description: Manage webhook subscriptions for real-time events.
  - name: Agent
    description: Interact with the AI agent for automated workflows.
  - name: Lead Sessions
    description: Track and manage lead capture sessions.
paths:
  /proposals/{proposal_id}/duplicate:
    post:
      tags:
        - Proposals
      summary: Duplicate Proposal
      description: |-
        Duplicate an existing proposal.

        **Required scope:** `write`
      operationId: >-
        duplicate_proposal_api_external_v1_proposals__proposal_id__duplicate_post
      parameters:
        - name: proposal_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Proposal Id
        - name: name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Name for the duplicated proposal
            title: Name
          description: Name for the duplicated proposal
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProposalResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ProposalResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        userId:
          type: string
          format: uuid
          title: Userid
        teamId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Teamid
        name:
          type: string
          title: Name
        clientName:
          anyOf:
            - type: string
            - type: 'null'
          title: Clientname
        clientLocation:
          anyOf:
            - type: string
            - type: 'null'
          title: Clientlocation
        currency:
          type: string
          title: Currency
        hourlyRate:
          type: string
          title: Hourlyrate
        requirements:
          items:
            type: object
          type: array
          title: Requirements
        settings:
          type: object
          title: Settings
        status:
          type: string
          title: Status
        total:
          anyOf:
            - type: string
            - type: 'null'
          title: Total
        outcome:
          anyOf:
            - type: string
            - type: 'null'
          title: Outcome
        outcomeAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Outcomeat
        outcomeReason:
          anyOf:
            - type: string
            - type: 'null'
          title: Outcomereason
        outcomeNotes:
          anyOf:
            - type: string
            - type: 'null'
          title: Outcomenotes
        outcomeValue:
          anyOf:
            - type: string
            - type: 'null'
          title: Outcomevalue
        createdAt:
          type: string
          format: date-time
          title: Createdat
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
        authorName:
          anyOf:
            - type: string
            - type: 'null'
          title: Authorname
      type: object
      required:
        - id
        - userId
        - name
        - clientName
        - clientLocation
        - currency
        - hourlyRate
        - requirements
        - settings
        - status
        - createdAt
        - updatedAt
      title: ProposalResponse
      description: Schema for proposal response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key obtained from Quikly.ai Settings → API Keys.
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````