BigCommerce · Example Payload

Bigcommerce Updatecustomerssettingschannel Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatecustomerssettingschannel 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": "updateCustomersSettingsChannel",
  "method": "PUT",
  "path": "/customers/settings/channels/{channel_id}",
  "summary": "BigCommerce Update Customer Settings per Channel",
  "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
        },
        "allow_global_logins": true
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example",
      "example": {
        "privacy_settings": {
          "ask_shopper_for_tracking_consent": true,
          "policy_url": "https://bigcommmerce.com/policy",
          "ask_shopper_for_tracking_consent_on_checkout": null
        },
        "customer_group_settings": {
          "guest_customer_group_id": 0,
          "default_customer_group_id": 0
        },
        "allow_global_logins": true
      }
    }
  ]
}