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

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

# ProductSupplier

## 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:
    ProductSupplier:
      title: ""
      type: object
      properties:
        product_id:
          type: integer
          description: Product ID
          format: int32
        supplier_code:
          type: string
          description: Supplier Code
          nullable: true
        supplier_name:
          type: string
          description: Supplier Name
          nullable: true
        supplier_status:
          type: boolean
          description: Supplier Status (true - Enabled, false - Disabled)
        supplier_buy_ex:
          maximum: 922337203685477.6
          minimum: -922337203685477.6
          type: number
          description: Supplier Buy Ex
          format: double
          nullable: true
        supplier_sku2:
          type: string
          description: Supplier SKU2
          nullable: true
        lead_time:
          type: integer
          description: Lead Time in days
          format: int32
          nullable: true
        is_default:
          type: boolean
          description: Indicates if the product supplier is a default supplier
          nullable: true
        notes:
          type: string
          description: Notes
          nullable: true
        is_deleted:
          type: boolean
          description: Indicates if the product supplier is soft deleted
          nullable: true
      additionalProperties: false
```
