CustomerGroups
Returns a list of Customer Groups.
Table Specific Information
Select
The driver will use the BigCommerce API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the driver.
- Id supports the '=' comparison.
- Name supports the '=' comparison.
- IsDefault supports the '=' comparison.
- IsGroupForGuests supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM CustomerGroups SELECT * FROM CustomerGroups WHERE Id = 1 SELECT * FROM CustomerGroups WHERE IsDefault = "true" SELECT * FROM CustomerGroups WHERE IsGroupForGuests = "true"
Columns
Name | Type | Description |
Id [KEY] | Integer | Id of the customer group |
Name | String | Name of the group |
IsDefault | Boolean | Determines whether new customers are assigned to this group by default. |
CategoryAccessType | String | Type of the category access. |
IsGroupForGuests | Boolean | If the groups is for guests. There can only be one customer group for guests at a time. |