tags:
  - store
summary: Delete purchase order by ID
description: For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
operationId: deleteOrder
produces:
  - application/json
  - application/xml
parameters:
  - in: path
    name: orderId
    description: ID of the order that needs to be deleted
    required: true
    type: string
responses:
  "404":
    description: Order not found
  "400":
    description: Invalid ID supplied
