BigCommerce · Example Payload

Bigcommerce Setpricelistrecord Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Setpricelistrecord 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": "setPriceListRecord",
  "method": "PUT",
  "path": "/pricelists/{price_list_id}/records/{variant_id}/{currency_code}",
  "summary": "BigCommerce Set Price List Record by Currency Code",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "value",
      "example": {
        "data": {
          "price_list_id": 4,
          "variant_id": 356,
          "price": 12.99,
          "sale_price": 10.99,
          "retail_price": 15.99,
          "map_price": 17.99,
          "calculated_price": 10.99,
          "date_created": "2022-09-18T13:18:15Z",
          "date_modified": "2022-09-18T13:30:48Z",
          "currency": "eur",
          "product_id": 185,
          "bulk_pricing_tiers": [
            {
              "quantity_min": 5,
              "quantity_max": 10,
              "type": "percent",
              "amount": 1
            },
            {
              "quantity_min": 11,
              "quantity_max": 20,
              "type": "percent",
              "amount": 2
            }
          ]
        },
        "meta": {}
      }
    },
    {
      "status": "429",
      "contentType": "application/json",
      "name": "response",
      "example": {
        "status": 429,
        "title": "Too many requests",
        "type": "/api-docs/getting-started/api-status-codes",
        "errors": {}
      }
    }
  ]
}