---
title: "SupplierInvoiceListResponse"
url: "https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c/schemas/SupplierInvoiceListResponse"
---

> Full API specification: https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c.md

# SupplierInvoiceListResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: PublicApi
  version: 0.1.0
servers:
  - url: https://api.retailexpress.com.au/{basePath}
    variables:
      basePath:
        default: v1
components:
  schemas:
    SupplierInvoice:
      type: object
      properties:
        supplier_invoice_lines:
          type: array
          description: A list of items in supplier invoice
          items:
            $ref: "#/components/schemas/SupplierInvoiceLine"
        store_id:
          title: Store ID
          type: string
          description: The ID of the store
        date:
          title: Date
          type: string
          description: The date the supplier invoice was received
        supplier_invoice_id:
          title: Id
          type: integer
          description: The id of the supplier invoice
        purchase_order_id:
          title: Purchase Order Id
          type: string
          description: The id of the purchase order
        supplier_invoice_number:
          title: Supplier Invoice Number
          type: string
          description: The supplier invoice number
        supplier_id:
          title: Supplier Id
          type: string
          description: The ID of the supplier within this system
        supplier_invoice_date:
          title: Supplier Invoice Date
          type: string
          description: The supplier invoice date
      description: A supplier invoice
    PageNumber:
      title: Page Number
      type: integer
      description: The current page number
    TotalRecords:
      title: Total Record Count
      type: integer
      description: The total number of records in your query
    TotalPages:
      title: Total Page Count
      type: integer
      description: The total number of pages in your query
    PageSize:
      title: Page Size
      type: integer
      description: The maximum number of records in a single page
    SupplierInvoiceLine:
      type: object
      properties:
        amount_tax:
          title: Amount Tax
          type: number
          description: The tax chargeable on the cost of the supplier invoice
        amount_inclusive:
          title: Amount Inclusive
          type: number
          description: The cost of the supplier invoice, inclusive of tax
        amount_exclusive:
          title: Amount Exclusive
          type: number
          description: The cost of the supplier invoice, exclusive of tax
        transaction_type:
          title: Transaction Type
          type: string
          description: The type of supplier invoice
      description: A supplier invoice
    SupplierInvoiceListResponse:
      type: object
      properties:
        supplier_invoices:
          type: array
          description: A list of supplier invoices
          items:
            $ref: "#/components/schemas/SupplierInvoice"
        page_number:
          $ref: "#/components/schemas/PageNumber"
        total_records:
          $ref: "#/components/schemas/TotalRecords"
        total_pages:
          $ref: "#/components/schemas/TotalPages"
        page_size:
          $ref: "#/components/schemas/PageSize"
```
