BigCommerce · Example Payload

Bigcommerce Getproductmodifiervalue Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getproductmodifiervalue 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": "getProductModifierValue",
  "method": "GET",
  "path": "/catalog/products/{product_id}/modifiers/{modifier_id}/values/{value_id}",
  "summary": "BigCommerce Get a Product Modifier Value",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": {
          "id": 190,
          "option_id": 222,
          "label": "Yes",
          "sort_order": 0,
          "value_data": {},
          "is_default": false,
          "adjusters": {
            "price": {
              "adjuster": "relative",
              "adjuster_value": 5
            },
            "weight": {},
            "image_url": "",
            "purchasing_disabled": {
              "status": false,
              "message": ""
            }
          }
        },
        "meta": {}
      }
    }
  ]
}