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

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

# V2.CustomerType

Customer type 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:
    V2.CustomerType:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Customer type identifier
          format: int32
        name:
          maxLength: 60
          minLength: 0
          type: string
          description: Customer type name
          nullable: true
        active:
          type: boolean
          description: Customer type active
          nullable: true
        default:
          type: boolean
          description: Customer type default
          nullable: true
        deleted:
          type: boolean
          description: Customer type deleted
          nullable: true
        modified_on:
          type: string
          description: Customer type last modified
          format: date-time
      additionalProperties: false
      description: Customer type model
```
