BigCommerce · Example Payload

Bigcommerce Updatecustomerssettings Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatecustomerssettings 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": "updateCustomersSettings",
  "method": "PUT",
  "path": "/customers/settings",
  "summary": "BigCommerce Update Customer Settings",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "example-1",
      "example": {
        "privacy_settings": {
          "ask_shopper_for_tracking_consent": true,
          "policy_url": "https://bigcommmerce.com/policy"
        },
        "customer_group_settings": {
          "guest_customer_group_id": 0,
          "default_customer_group_id": 0
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "data",
      "example": {
        "privacy_settings": {
          "ask_shopper_for_tracking_consent": true,
          "policy_url": "https://bigcommerce.com/policy",
          "ask_shopper_for_tracking_consent_on_checkout": false
        },
        "customer_group_settings": {
          "guest_customer_group_id": 0,
          "default_customer_group_id": 0
        }
      }
    }
  ]
}