---
title: "ProductETA.PagingResponse"
url: "https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/d3750347-3c58-45e9-b3b1-b23a00e713ed/schemas/ProductETA.PagingResponse"
---

> Full API specification: https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/d3750347-3c58-45e9-b3b1-b23a00e713ed.md

# ProductETA.PagingResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Retail Express API
  version: V2
servers:
  - url: https://api.retailexpress.com.au/v2
components:
  schemas:
    ProductETA:
      title: ""
      type: object
      properties:
        product_id:
          type: integer
          description: Product Id
          format: int32
          nullable: true
        sku:
          type: string
          description: Supplier SKU
          nullable: true
        quantity_ordered:
          type: integer
          description: Quantity Ordered
          format: int32
        eta:
          type: string
          description: Estimated Time of Arrival
          format: date-time
      additionalProperties: false
      description: Product ETA model
    ProductETA.PagingResponse:
      title: ""
      type: object
      properties:
        data:
          type: array
          items:
            $ref: "#/components/schemas/ProductETA"
          nullable: true
        page_number:
          type: integer
          format: int32
        page_size:
          type: integer
          format: int32
        total_records:
          type: integer
          format: int32
      additionalProperties: false
```
