BigCommerce · Example Payload

Bigcommerce Getbulkpricingrule Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getbulkpricingrule 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": "getBulkPricingRule",
  "method": "GET",
  "path": "/catalog/products/{product_id}/bulk-pricing-rules/{bulk_pricing_rule_id}",
  "summary": "BigCommerce Get a Bulk Pricing Rule",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": {
          "id": 83,
          "quantity_min": 1,
          "quantity_max": 3,
          "type": "price",
          "amount": 1
        },
        "meta": {}
      }
    }
  ]
}