BigCommerce · Schema

ChannelAbandonedCartSettings

Represents all settings overrides related to the abandoned cart functionality of a store for a channel

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
enable_notification boolean Indicates whether or not abandoned cart notification is on. If it is null, it means there is no override for the specified channel.
email_customer_until_cart_is_recovered boolean Indicates whether or not a customer should continue to receive abandoned cart emails until their cart is recovered. If it is null, it means there is no override for the specified channel.
marketing_emails_require_customer_consent boolean Indicates whether or not a customer should receive abandoned cart emails based on their consent. If it is null, it means there is no override for the specified channel. By default customers will not r
email_merchant_when_cart_is_converted boolean Indicates whether or not a merchant should receive a notification email when a cart is converted into an order. If it is null, it means there is no override for the specified channel.
email_merchant_when_cart_is_abandoned boolean Indicates whether or not a merchant should receive a notification email when a cart is abandoned. If it is null, it means there is no override for the specified channel.
merchant_email_address string The email address for receiving merchant notifications. If it is null, it means there is no override for the specified channel.
merchant_abandoned_cart_email_frequency_type string Indicates whether to send an email for every abandoned cart or to send a digest email after X number of abandoned carts. If it is null, it means there is no override for the specified channel.
merchant_abandoned_cart_digest_email_frequency integer The number of abandoned carts to accumulate before a digest email is sent to a merchant. If it is null, it means there is no override for the specified channel.
View JSON Schema on GitHub

JSON Schema

bigcommerce-channelabandonedcartsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChannelAbandonedCartSettings",
  "title": "ChannelAbandonedCartSettings",
  "description": "Represents all settings overrides related to the abandoned cart functionality of a store for a channel",
  "type": "object",
  "x-tags": [
    "Models"
  ],
  "properties": {
    "enable_notification": {
      "description": "Indicates whether or not abandoned cart notification is on. If it is null, it means there is no override for the specified channel.",
      "type": "boolean",
      "nullable": true
    },
    "email_customer_until_cart_is_recovered": {
      "description": "Indicates whether or not a customer should continue to receive abandoned cart emails until their cart is recovered. If it is null, it means there is no override for the specified channel.",
      "type": "boolean",
      "nullable": true
    },
    "marketing_emails_require_customer_consent": {
      "description": "Indicates whether or not a customer should receive abandoned cart emails based on their consent. If it is null, it means there is no override for the specified channel. By default customers will not receive emails.",
      "type": "boolean",
      "nullable": true
    },
    "email_merchant_when_cart_is_converted": {
      "description": "Indicates whether or not a merchant should receive a notification email when a cart is converted into an order. If it is null, it means there is no override for the specified channel.",
      "type": "boolean",
      "nullable": true
    },
    "email_merchant_when_cart_is_abandoned": {
      "description": "Indicates whether or not a merchant should receive a notification email when a cart is abandoned. If it is null, it means there is no override for the specified channel.",
      "type": "boolean",
      "nullable": true
    },
    "merchant_email_address": {
      "description": "The email address for receiving merchant notifications. If it is null, it means there is no override for the specified channel.",
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "merchant_abandoned_cart_email_frequency_type": {
      "description": "Indicates whether to send an email for every abandoned cart or to send a digest email after X number of abandoned carts. If it is null, it means there is no override for the specified channel.",
      "type": "string",
      "enum": [
        "digest",
        "individual"
      ],
      "nullable": true
    },
    "merchant_abandoned_cart_digest_email_frequency": {
      "description": "The number of abandoned carts to accumulate before a digest email is sent to a merchant. If it is null, it means there is no override for the specified channel.",
      "type": "integer",
      "minimum": 2,
      "maximum": 1000,
      "nullable": true
    }
  }
}