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

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

# CustomerSegmentGroup

Customer segment group 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:
    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:
      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
```
