BigCommerce · Schema

AbandondedCartEmail

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id integer
notify_at_minutes object
coupon_code object
template object
is_active boolean
sent_num integer
View JSON Schema on GitHub

JSON Schema

bigcommerce-abandondedcartemail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AbandondedCartEmail",
  "title": "AbandondedCartEmail",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 1
    },
    "notify_at_minutes": {
      "$ref": "#/components/schemas/NotifyAtMinutes"
    },
    "coupon_code": {
      "$ref": "#/components/schemas/CouponCode"
    },
    "template": {
      "$ref": "#/components/schemas/Template"
    },
    "is_active": {
      "type": "boolean"
    },
    "sent_num": {
      "type": "integer"
    }
  },
  "x-internal": false
}