> ## 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 custom checkout link

> Deletes an existing checkout link by ID, removing it from the store's records.

- **Request Headers:**
  - `x-store-id` (string, required): The ID of the store making the deletion request.

- **Path Parameters:**
  - `id` (string, required): ID of the checkout link.

- **Response:** Confirmation of the deletion status.

Ensures old or unused checkouts are removed to keep the store's checkout processes streamlined and efficient.



## OpenAPI

````yaml /api-reference/blink-api.json delete /checkout-links/{id}
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:
  /checkout-links/{id}:
    delete:
      tags:
        - Checkouts
      summary: Delete a custom checkout link
      description: >-
        Deletes an existing checkout link by ID, removing it from the store's
        records.


        - **Request Headers:**
          - `x-store-id` (string, required): The ID of the store making the deletion request.

        - **Path Parameters:**
          - `id` (string, required): ID of the checkout link.

        - **Response:** Confirmation of the deletion status.


        Ensures old or unused checkouts are removed to keep the store's checkout
        processes streamlined and efficient.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the checkout link.
      responses:
        '204':
          description: Checkout link deleted successfully. No content returned.
        '404':
          description: Checkout Link not found.
      security:
        - storeIdHeader: []
components:
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````