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

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

# ProductDetailLog

Product Detail Log 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:
    UserExtended:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Id.
          format: int32
          nullable: true
        user_code:
          type: string
          description: User code.
          nullable: true
        first_name:
          type: string
          description: First name.
          nullable: true
        surname:
          type: string
          description: Surname.
          nullable: true
      additionalProperties: false
    ProductDetailLogProduct:
      title: ""
      type: object
      properties:
        id:
          type: integer
          format: int32
        supplier_sku:
          type: string
          nullable: true
        short_description:
          type: string
          nullable: true
        created_on:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
      description: Product Detail Log Product model
    Decimal.BeforeChangeAfter:
      title: ""
      type: object
      properties:
        before:
          type: number
          description: Before
          format: double
        change:
          type: number
          description: Change
          format: double
        after:
          type: number
          description: After
          format: double
      additionalProperties: false
    String.BeforeAfter:
      title: ""
      type: object
      properties:
        before:
          type: string
          description: Before
          nullable: true
        after:
          type: string
          description: After
          nullable: true
      additionalProperties: false
    Boolean.BeforeAfter:
      title: ""
      type: object
      properties:
        before:
          type: boolean
          description: Before
        after:
          type: boolean
          description: After
      additionalProperties: false
    ProductDetailLog:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Id
          format: int32
        created_on:
          type: string
          description: Created on
          format: date-time
        created_by:
          $ref: "#/components/schemas/UserExtended"
        product:
          $ref: "#/components/schemas/ProductDetailLogProduct"
        movement_type:
          type: string
          description: Source type
          nullable: true
        origin:
          type: string
          description: Origin
          nullable: true
        supplier_buy_ex:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        buy_price_ex:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        direct_costs_ex:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        sell_price_inc:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        discount_price:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        rrp_inc:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        web_price_inc:
          $ref: "#/components/schemas/Decimal.BeforeChangeAfter"
        product_type:
          $ref: "#/components/schemas/String.BeforeAfter"
        disabled:
          $ref: "#/components/schemas/Boolean.BeforeAfter"
      additionalProperties: false
      description: Product Detail Log model
```
