BigCommerce · Example Payload

Bigcommerce Updatesiteroutes Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatesiteroutes 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": "updateSiteRoutes",
  "method": "PUT",
  "path": "/sites/{site_id}/routes",
  "summary": "BigCommerce Update a Site\u2019s Routes",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "response",
      "example": {
        "data": [
          {
            "id": 123,
            "type": "brand",
            "matching": "5",
            "route": "/my-amazing-product"
          },
          {
            "id": 345,
            "type": "blog",
            "matching": "5",
            "route": "/my-amazing-product"
          },
          {
            "id": 234,
            "type": "returns",
            "matching": "5",
            "route": "/my-amazing-product"
          }
        ],
        "meta": {
          "pagination": {
            "total": 80,
            "count": 50,
            "per_page": 50,
            "current_page": 50,
            "total_pages": 2,
            "links": {
              "current": "?page=1&limit=50",
              "next": "?page=2&limit=50"
            }
          }
        }
      }
    }
  ]
}