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

> Delete a delivery by its unique identifier.



## OpenAPI

````yaml delete /v1/delivery/{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/delivery/{id}:
    delete:
      tags:
        - Delivery
      summary: Delete a delivery
      description: Delete a delivery by its unique identifier.
      operationId: DeliveryController_delete_v1
      parameters:
        - name: id
          required: true
          in: path
          description: Delivery ID
          schema:
            type: string
      responses:
        '204':
          description: The delivery has been successfully deleted.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````