BigCommerce · Schema

SubscriptionRequest

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
email string Email of subscriber
acceptsMarketingNewsletter boolean Describes whether subscriber has consented to receive Marketing emails.
acceptsAbandonedCartEmails boolean Describes whether subscriber has consented to receive Abandoned Cart emails.
View JSON Schema on GitHub

JSON Schema

bigcommerce-subscriptionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionRequest",
  "title": "SubscriptionRequest",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email of subscriber"
    },
    "acceptsMarketingNewsletter": {
      "type": "boolean",
      "description": "Describes whether subscriber has consented to receive Marketing emails."
    },
    "acceptsAbandonedCartEmails": {
      "type": "boolean",
      "description": "Describes whether subscriber has consented to receive Abandoned Cart emails."
    }
  },
  "x-internal": false
}