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

# Delete product

> Permanently delete a product, together with its variants, options and images. Orders that already include it keep their line items. This cannot be undone — hide a product with `status: "HIDDEN"` if you may want it back.



## OpenAPI

````yaml openapi-v2 DELETE /api/v2/products/{product_id}
openapi: 3.1.0
info:
  title: Take App Merchant API V2
  version: 2.0.0
  description: >-
    Authenticated Merchant API for stores. All money values are integers in the
    smallest currency unit (e.g. cents).
servers:
  - url: https://take.app
security:
  - bearerAuth: []
paths:
  /api/v2/products/{product_id}:
    delete:
      tags:
        - Products
      description: >-
        Permanently delete a product, together with its variants, options and
        images. Orders that already include it keep their line items. This
        cannot be undone — hide a product with `status: "HIDDEN"` if you may
        want it back.
      operationId: deleteProduct
      parameters:
        - schema:
            type: string
          required: true
          name: product_id
          in: path
      responses:
        '200':
          description: Deleted product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletedResource'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeletedResource:
      type: object
      properties:
        id:
          type: string
        object:
          type: string
        deleted:
          type: boolean
          enum:
            - true
      required:
        - id
        - object
        - deleted
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              enum:
                - invalid_request_error
                - authentication_error
                - permission_error
                - not_found_error
                - rate_limit_error
                - api_error
            code:
              type: string
            message:
              type: string
            param:
              type: string
            request_id:
              type: string
          required:
            - type
            - code
            - message
            - request_id
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Merchant API V2 token. Pass as `Authorization: Bearer <token>`.'

````