BigCommerce · Example Payload

Bigcommerce Updatetaxrates Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatetaxrates 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": "updateTaxRates",
  "method": "PUT",
  "path": "/tax/rates",
  "summary": "BigCommerce Update Tax Rates",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Example 1",
      "example": {
        "data": [
          {
            "id": 3,
            "tax_zone_id": 2,
            "name": "Sales Tax",
            "enabled": true,
            "priority": 1,
            "class_rates": [
              {
                "rate": 10,
                "tax_class_id": 0
              }
            ]
          }
        ],
        "meta": {}
      }
    }
  ]
}