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

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

# Stock Adjustment Summary

A summary of stock adjustments 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:
    StockAdjustmentSummary:
      title: Stock Adjustment Summary
      type: object
      properties:
        date:
          title: Date
          type: string
          description: The date of the summary
          format: date
        store_id:
          title: Store ID
          type: string
          description: The ID of the store within this system
        amount:
          title: Amount
          type: number
          description: The cost of the stock adjustment
          format: double
        transaction_type:
          title: Transaction Type
          type: string
          description: The ID of the transaction type within this system
      description: A summary of stock adjustments for a given store on a given date
```
