BigCommerce · Schema

Customer Details

The details of the Customer that has made the purchase.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
customer_groups array
customer_id integer
View JSON Schema on GitHub

JSON Schema

bigcommerce-customerdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerDetails",
  "title": "Customer Details",
  "type": "object",
  "properties": {
    "customer_groups": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "customer_group_id": {
            "type": "integer"
          },
          "customer_group_name": {
            "type": "string"
          }
        },
        "title": "Customer Group",
        "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."
      }
    },
    "customer_id": {
      "type": "integer"
    }
  },
  "description": "The details of the Customer that has made the purchase.",
  "x-internal": false
}