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

# Cancel Order

> Cancel an existing product order. Cancellations are final and refunds are not available for products that have already exploded

Cancel an existing product order. Note: Cancellations are final and refunds are not available for products that have already exploded.


## OpenAPI

````yaml DELETE /products/{id}
openapi: 3.1.0
info:
  title: Acme Corporation Product Catalog API
  description: >-
    The official API for managing ACME Corporation's wacky product catalog. Use
    at your own risk!
  license:
    name: ACME License - Explosions Not Covered
  version: 1.0.0
servers:
  - url: https://api.acmecorp.com
security:
  - bearerAuth: []
paths:
  /products/{id}:
    delete:
      description: >-
        Cancel an existing product order. Cancellations are final and refunds
        are not available for products that have already exploded
      parameters:
        - name: id
          in: path
          description: ID of product order to cancel
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '204':
          description: Order cancelled successfully
          content: {}
        '400':
          description: Cancellation failed - product may have already shipped or exploded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
          description: Error message (may include explosion warnings)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ACME Bearer token (obtained with product purchase)

````