BigCommerce · Example Payload

Bigcommerce Getcustomtemplateassociations Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getcustomtemplateassociations 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": "getCustomTemplateAssociations",
  "method": "GET",
  "path": "/storefront/custom-template-associations",
  "summary": "BigCommerce Get Custom Template Associations",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "data": [
          {
            "id": 1,
            "channel_id": 1,
            "entity_type": "product",
            "entity_id": 123,
            "file_name": "custom-product-1.html"
          },
          {
            "id": 2,
            "channel_id": 12345,
            "entity_type": "page",
            "entity_id": 123,
            "file_name": "custom-page.html"
          }
        ],
        "meta": {
          "pagination": {
            "total": 246,
            "count": 5,
            "per_page": 5,
            "current_page": 1,
            "total_pages": 50,
            "links": {
              "next": "?limit=5&page=2",
              "current": "?limit=5&page=1"
            }
          }
        }
      }
    }
  ]
}