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

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

# Sales Summary

A summary of sales data for a given store on a given date

## 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:
    SalesSummary:
      title: Sales Summary
      type: object
      properties:
        store_id:
          title: Store ID
          type: string
          description: The ID of the store within this system
        date:
          title: Date
          type: string
          description: The date of the summary
          format: date
        tax_type_id:
          title: Tax Type ID
          type: string
          description: The ID of the tax type within this system
        amount_tax:
          title: Amount Tax
          type: number
          description: The tax chargeable on the transaction
        amount_inclusive:
          title: Amount Inclusive
          type: number
          description: The value of the transaction, inclusive of tax
        id:
          title: ID
          type: string
          description: The ID of the sales summary record
        amount_exclusive:
          title: Amount Exclusive
          type: number
          description: The value of the transaction, exclusive of tax
        transaction_type:
          title: Transaction Type
          type: string
          description: The ID of the transaction type within this system
      description: A summary of sales data for a given store on a given date
```
