> ## 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.

# Revoke a license key

> Permanently disable a license key to prevent further use. Requires `x-store-id` for verification and checks the key’s status before revocation. Suitable when a license has been compromised or needs termination.



## OpenAPI

````yaml post /license-keys/{id}/revoke
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: []
paths:
  /license-keys/{id}/revoke:
    post:
      tags:
        - License Keys
      summary: Revoke a license key
      description: >-
        Permanently disable a license key to prevent further use. Requires
        `x-store-id` for verification and checks the key’s status before
        revocation. Suitable when a license has been compromised or needs
        termination.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: License key revoked
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseKeyRevokeResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    LicenseKeyRevokeResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            status:
              type: string

````