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

# Get delivery line items for a purchase order line item

> Get all delivery line items associated with a specific purchase order line item.



## OpenAPI

````yaml get /v1/purchase-order/{purchaseOrderId}/line-items/{lineItemId}/deliveries
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/{purchaseOrderId}/line-items/{lineItemId}/deliveries:
    get:
      tags:
        - Purchase Order
      summary: Get delivery line items for a purchase order line item
      description: >-
        Get all delivery line items associated with a specific purchase order
        line item.
      operationId: PurchaseOrderController_getDeliveryLineItemsForPurchaseOrderLineItem_v1
      parameters:
        - name: purchaseOrderId
          required: true
          in: path
          schema:
            type: string
        - name: lineItemId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````