---
title: "InventoryMovementLogsProduct"
url: "https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c/schemas/InventoryMovementLogsProduct"
---

> Full API specification: https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c.md

# InventoryMovementLogsProduct

Inventory Movement Logs model

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Retail Express API
  version: v2.1
servers:
  - url: https://api.retailexpress.com.au/v2.1
components:
  schemas:
    ProductType:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Product type Id.
          format: int32
          nullable: true
        name:
          maxLength: 50
          minLength: 0
          pattern: ^[a-zA-Z0-9\s./;:\-_+()*&^%$#@]+$
          type: string
          description: Product type description (Name)
          nullable: true
        modified_on:
          type: string
          description: Modified on
          format: date-time
      additionalProperties: false
      description: Product Type Model
    InventoryMovementLogsProduct:
      title: ""
      type: object
      properties:
        id:
          type: integer
          format: int32
          nullable: true
        supplier_sku:
          type: string
          nullable: true
        short_description:
          type: string
          nullable: true
        product_type:
          $ref: "#/components/schemas/ProductType"
      additionalProperties: false
      description: Inventory Movement Logs model
```
