BigCommerce · Example Payload

Bigcommerce Getbanners Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getbanners 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": "getBanners",
  "method": "GET",
  "path": "/banners",
  "summary": "BigCommerce Get All Banners",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "id": 1,
          "name": "This is a banner",
          "content": "<p>This is a banner</p>",
          "page": "home_page",
          "item_id": "0",
          "location": "top",
          "date_created": "1522169082",
          "date_type": "always",
          "date_from": "0",
          "date_to": "0",
          "visible": "1"
        },
        {
          "id": 2,
          "name": "Banner #2",
          "content": "<p>Banner # 2</p>",
          "page": "category_page",
          "item_id": "23",
          "location": "top",
          "date_created": "1522169169",
          "date_type": "always",
          "date_from": "0",
          "date_to": "0",
          "visible": "1"
        }
      ]
    }
  ]
}