> ## Documentation Index
> Fetch the complete documentation index at: https://api-doc.fidly.be/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Delivery Location

> Delete a saved delivery address.

Refused with `409 delivery_location_in_use` when a document is delivered to it: nothing in
the database ties the two together, so this check is the only thing keeping that document
from pointing at nothing. Deleting the third party deletes its addresses along with it.



## OpenAPI

````yaml /openapi.json delete /delivery-locations/{location_uuid}
openapi: 3.1.0
info:
  title: Fidly API
  version: 1.0.0
servers:
  - url: https://api.fidly.be
    description: Production
security: []
paths:
  /delivery-locations/{location_uuid}:
    delete:
      tags:
        - delivery locations
      summary: Delete Delivery Location
      description: >-
        Delete a saved delivery address.


        Refused with `409 delivery_location_in_use` when a document is delivered
        to it: nothing in

        the database ties the two together, so this check is the only thing
        keeping that document

        from pointing at nothing. Deleting the third party deletes its addresses
        along with it.
      operationId: delete_delivery_location_delivery_locations__location_uuid__delete
      parameters:
        - name: location_uuid
          in: path
          required: true
          schema:
            type: string
            title: Location Uuid
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````