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

# Delete product (Admin only) — deactivates it rather than a hard delete



## OpenAPI

````yaml /openapi/product-service-inventory.json delete /v1/products/{id}
openapi: 3.0.0
info:
  title: Asiko Product Service — Inventory API
  description: >-
    Admin and Super Admin only endpoints: create/update/delete products,
    categories, brands
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: inventory
    description: ''
paths:
  /v1/products/{id}:
    delete:
      tags:
        - inventory
      summary: Delete product (Admin only) — deactivates it rather than a hard delete
      operationId: InventoryProductsController_delete
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````