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

# Delete Product

> Delete a single product



## OpenAPI

````yaml DELETE /organizations/{orgId}/catalogs/{catalogId}/products/{productId}
openapi: 3.1.0
info:
  title: Refine API
  description: >-
    API for managing product catalogs and delivering AI-powered product
    recommendations and search
  version: 1.0.0
  contact:
    name: Refine Support
    email: support@refine.ai
servers:
  - url: https://api.joinrefine.io
    description: Production server
security:
  - apiKey: []
paths:
  /organizations/{orgId}/catalogs/{catalogId}/products/{productId}:
    delete:
      tags:
        - Product Operations
      summary: Delete Product
      description: Delete a single product
      operationId: deleteProduct
      parameters:
        - name: orgId
          in: path
          required: true
          description: Organization ID (UUID)
          schema:
            type: string
            format: uuid
        - name: catalogId
          in: path
          required: true
          description: Catalog ID (UUID)
          schema:
            type: string
            format: uuid
        - name: productId
          in: path
          required: true
          description: Product ID
          schema:
            type: string
      responses:
        '200':
          description: Product deleted successfully
        '400':
          description: Bad Request - Invalid UUID format or empty product ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Forbidden - Catalog doesn't belong to organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found - Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - status
        - message
        - time
        - method
        - url
      properties:
        status:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
        time:
          type: string
          format: date-time
          description: Timestamp in RFC3339 format
        method:
          type: string
          description: HTTP method
        url:
          type: string
          description: Request URL
  responses:
    Unauthorized:
      description: Unauthorized - Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            status: 401
            message: Unauthorized
            time: '2024-06-14T19:21:00Z'
            method: GET
            url: /organizations/a8cd2722-1234-4567-9abc-def123456789/catalogs
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: REFINE_API_KEY
      description: API key for authentication

````