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

# Delete a product variant

> This endpoint deletes a specified variant of a product. Authentication is verified using the `x-store-id` header. Useful for removing discontinued variants to keep product offerings clear and current.



## OpenAPI

````yaml /api-reference/blink-api.json delete /v1/products/{id}/variants/{variantId}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /v1/products/{id}/variants/{variantId}:
    delete:
      tags:
        - Products
      summary: Delete a product variant
      description: >-
        This endpoint deletes a specified variant of a product. Authentication
        is verified using the `x-store-id` header. Useful for removing
        discontinued variants to keep product offerings clear and current.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the product.
        - name: variantId
          in: path
          required: true
          schema:
            type: string
          description: ID of the variant to delete.
      responses:
        '200':
          description: Variant deleted successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  deleted:
                    type: boolean
        '401':
          description: Unauthorized - Store ID header missing.
        '404':
          description: Variant not found.
      security:
        - storeIdHeader: []
components:
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````