BigCommerce · Example Payload

Bigcommerce Updatetaxproviderconnection Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Updatetaxproviderconnection 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": "updateTaxProviderConnection",
  "method": "PUT",
  "path": "/tax/providers/{provider_id}/connection",
  "summary": "BigCommerce Update a Connection",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "Example",
      "example": {
        "username": "MyTaxProviderAccount",
        "password": "h6eSgKLN72q7jYTW",
        "profile": "test-profile"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "response",
      "example": {
        "data": {
          "username": "MyUpdatedTaxProviderAccount",
          "configured": true
        }
      }
    }
  ]
}