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

# Get Delivery Location



## OpenAPI

````yaml /openapi.json get /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}:
    get:
      tags:
        - delivery locations
      summary: Get Delivery Location
      operationId: get_delivery_location_delivery_locations__location_uuid__get
      parameters:
        - name: location_uuid
          in: path
          required: true
          schema:
            type: string
            title: Location Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeliveryLocationOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DeliveryLocationOut:
      properties:
        id:
          type: string
          title: Id
          description: Opaque unique identifier of the delivery location.
        relation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Relation Id
          description: >-
            Opaque identifier of the third party this address belongs to
            (resolvable via `GET /relations/{id}`).
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Label of the location, e.g. `Warehouse Liège`.
        address:
          anyOf:
            - $ref: '#/components/schemas/AddressOut'
            - type: 'null'
          description: The address itself.
        identifier:
          anyOf:
            - type: string
            - type: 'null'
          title: Identifier
          description: Identifier of the location itself, typically a GLN.
        identifier_scheme:
          anyOf:
            - type: string
            - type: 'null'
          title: Identifier Scheme
          description: >-
            Scheme `identifier` belongs to — 4-digit Peppol scheme code, e.g.
            `0088` for a GLN.
      type: object
      required:
        - id
      title: DeliveryLocationOut
      description: A delivery address saved on a third party.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AddressOut:
      properties:
        street:
          anyOf:
            - type: string
            - type: 'null'
          title: Street
          description: Street name.
        street_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Street Number
          description: Street/house number.
        street2:
          anyOf:
            - type: string
            - type: 'null'
          title: Street2
          description: Additional address line.
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
          description: Postal/ZIP code.
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: City.
        province:
          anyOf:
            - type: string
            - type: 'null'
          title: Province
          description: Province, state or region.
        country_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Country Code
          description: ISO 3166-1 alpha-2 country code (e.g. `BE`).
      type: object
      title: AddressOut
      description: >-
        Postal address of a relation. The object itself is `null` when none is
        stored.
    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

````