BigCommerce · Example Payload

Bigcommerce Getabandonedcartemailtemplates Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getabandonedcartemailtemplates Example is an example object payload from BigCommerce, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "getAbandonedCartEmailTemplates",
  "method": "GET",
  "path": "/marketing/abandoned-cart-emails",
  "summary": "BigCommerce Get all abandoned cart email templates",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "List of abandoned cart templates",
      "example": {
        "data": [
          {
            "id": 1,
            "notify_at_minutes": 60,
            "coupon_code": "FF11-22X4",
            "template": {
              "subject": "Complete your purchase at {{ store.name }}",
              "body": "Complete your purchase <a href=\"{{ notification.checkout_link }}\">{{notification.checkout.link}}",
              "translations": [
                {
                  "locale": "en",
                  "keys": {
                    "hello_phrase": "Welcome back,"
                  }
                }
              ]
            }
          }
        ],
        "meta": {}
      }
    }
  ]
}