BigCommerce · Example Payload

Bigcommerce Getemailtemplate Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getemailtemplate 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": "getEmailTemplate",
  "method": "GET",
  "path": "/marketing/email-templates/{template-name}",
  "summary": "BigCommerce Get an Email Template",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Example",
      "example": {
        "data": {
          "type_id": "account_reset_password_email",
          "body": "<!DOCTYPE html> <html lang=\"en\"> <head>     <meta charset=\"UTF-8\">     <title>Title</title> </head> <body> <p>     {{lang \"reset_password\" name=store.name}} </p> <br/> <br/> <a href=\"{{account.reset_password_link}}\">     {{account.reset_password_link}} </a>  </body> </html>",
          "translations": [
            {
              "locale": "en",
              "keys": {
                "reset_password": "To change your customer account password at {{name}} please click this link or copy and paste it into your browser:"
              }
            }
          ],
          "subject": "Reset your password at {{store.name}}"
        },
        "meta": {}
      }
    }
  ]
}