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

# Delete a Product.

> Delete a Product.



## OpenAPI

````yaml delete /products/{productId}
openapi: 3.0.0
info:
  title: AASAAN REST API
  version: 1.0.0
  description: >-
    REST API endpoints are organized by resource type. You’ll need to use
    different endpoints depending on your app’s requirements.
servers:
  - url: https://api.aasaan.shop/api/v1/stores
    description: Development server
security: []
tags: []
paths:
  /products/{productId}:
    delete:
      tags:
        - Product
      summary: Delete a Product.
      description: Delete a Product.
      parameters:
        - name: productId
          in: path
          required: true
          schema:
            type: string
            description: Product id
      responses:
        '200':
          description: Product Delete.
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Invalid Api Key
        '500':
          description: Internal Server Error

````