BigCommerce · Example Payload

Bigcommerce Updatesettingsstorefrontsearch Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatesettingsstorefrontsearch 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": "updateSettingsStorefrontSearch",
  "method": "PUT",
  "path": "/settings/storefront/search",
  "summary": "BigCommerce Update Storefront Search Settings",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "content_product_sort": "relevance",
        "default_product_sort": "featured",
        "product_filtering_enabled": true,
        "search_suggest": true
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "data": {
          "content_product_sort": "relevance",
          "default_product_sort": "featured",
          "product_filtering_enabled": true,
          "search_suggest": true
        },
        "meta": {}
      }
    }
  ]
}