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

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

# CustomerSegmentGroup.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:
    CustomerSegmentGroup:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Customer Segment Group Identifier
          format: int32
        name:
          type: string
          description: Name
          nullable: true
        active:
          type: boolean
          description: Active status
        options:
          type: array
          items:
            $ref: "#/components/schemas/CustomerSegmentOption"
          description: Customer segment options
          nullable: true
      additionalProperties: false
      description: Customer segment group model
    CustomerSegmentOption:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Customer segment option identifier
          format: int32
        name:
          type: string
          description: Customer segment option name
          nullable: true
      additionalProperties: false
      description: Customer segment option model
    CustomerSegmentGroup.PagingResponse:
      title: ""
      type: object
      properties:
        data:
          type: array
          items:
            $ref: "#/components/schemas/CustomerSegmentGroup"
          nullable: true
        page_number:
          type: integer
          format: int32
        page_size:
          type: integer
          format: int32
        total_records:
          type: integer
          format: int32
      additionalProperties: false
```
