BigCommerce · Example Payload

Bigcommerce Updateabandonedcartemailtemplate Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updateabandonedcartemailtemplate 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": "updateAbandonedCartEmailTemplate",
  "method": "PUT",
  "path": "/marketing/abandoned-cart-emails/{id}",
  "summary": "BigCommerce Update an email template",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "Update Abandoned Cart Email template",
      "example": {
        "is_active": true,
        "coupon_code": "FF11-22X4",
        "notify_at_minutes": 60,
        "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,"
              }
            }
          ]
        }
      }
    },
    {
      "contentType": "application/json",
      "name": "Enable email",
      "example": {
        "is_active": true
      }
    },
    {
      "contentType": "application/json",
      "name": "Disable email",
      "example": {
        "is_active": false
      }
    },
    {
      "contentType": "application/json",
      "name": "Update coupon code and notification time",
      "example": {
        "coupon_code": "FF11-22X4",
        "notify_at_minutes": 60
      }
    }
  ],
  "responseExamples": []
}