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

# Delete a purchase order by ID

> Delete a purchase order by its unique identifier.



## OpenAPI

````yaml delete /v1/purchase-order/{id}
openapi: 3.0.0
info:
  title: ibana public api
  description: Public API for ibana
  version: 1.0.0
  contact:
    name: ibana
    url: https://ibana.io
    email: dev@ibana.io
servers:
  - url: http://localhost:3001
security: []
tags: []
paths:
  /v1/purchase-order/{id}:
    delete:
      tags:
        - Purchase Order
      summary: Delete a purchase order by ID
      description: Delete a purchase order by its unique identifier.
      operationId: PurchaseOrderController_delete_v1
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: The purchase order has been successfully deleted.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````