BigCommerce · Schema

Customer Group

The Group (if any) that this customer is in. The value will default to zero if the customer is not in a group or is a guest.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
customer_group_id integer
customer_group_name string
View JSON Schema on GitHub

JSON Schema

bigcommerce-customergroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerGroup",
  "title": "Customer Group",
  "type": "object",
  "properties": {
    "customer_group_id": {
      "type": "integer"
    },
    "customer_group_name": {
      "type": "string"
    }
  },
  "description": "The Group (if any) that this customer is in. The value will default to zero if the customer is not in a group or is a guest.",
  "x-internal": false
}