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

# Duplicate product

> Developer API operation for POST /dev/v1/products/{id}/duplicate.



## OpenAPI

````yaml /openapi.json post /dev/v1/products/{id}/duplicate
openapi: 3.0.3
info:
  title: Shoppex Developer API
  description: Mintlify-compatible Developer API reference for Shoppex.
  version: 1.0.0
  contact:
    name: Shoppex Support
    email: support@shoppex.io
    url: https://shoppex.io
servers:
  - url: https://api.shoppex.io
security:
  - bearerAuth: []
paths:
  /dev/v1/products/{id}/duplicate:
    post:
      tags:
        - Products
      summary: Duplicate product
      description: Developer API operation for POST /dev/v1/products/{id}/duplicate.
      operationId: postDevV1ProductsByIdDuplicate
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties: true
        '201':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                example:
                  data:
                    id: prod_db_2
                    uniqid: prod_copy
                    shop_id: shop_1
                    slug: original-product-copy
                    type: DYNAMIC
                    subtype: null
                    title: Original Product (Copy)
                    currency: USD
                    price: 19.99
                    price_display: 19.99
                    description: Product description
                    description_tabs:
                      - title: Features
                        content: <p>Instant delivery, 24/7 support.</p>
                    gateways:
                      - PAYPAL
                    custom_fields: []
                    delivery_instructions: null
                    quantity_min: 1
                    quantity_max: -1
                    quantity_warning: 0
                    stock: 0
                    stock_delimiter: |+

                    unlisted: false
                    private: false
                    on_hold: false
                    sort_priority: 0
                    crypto_confirmations: 1
                    max_risk_level: 0
                    block_vpn_proxies: false
                    delivery_text: ''
                    delivery_time: null
                    service_text: ''
                    dynamic_webhook: null
                    watermark_enabled: true
                    image_id: null
                    image_url: null
                    variants: []
                    created_at: 1711969200
                    updated_at: 1711969200
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````