BigCommerce · Example Payload

Bigcommerce Getpricelistrecord Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getpricelistrecord 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": "getPriceListRecord",
  "method": "GET",
  "path": "/pricelists/{price_list_id}/records/{variant_id}/{currency_code}",
  "summary": "BigCommerce Get a Price Record by Currency Code",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": {
          "price_list_id": 4,
          "variant_id": 356,
          "price": 22.544,
          "sale_price": 22.544,
          "retail_price": 22.544,
          "map_price": 22.544,
          "calculated_price": 22.544,
          "date_created": "2022-09-18T13:18:15Z",
          "date_modified": "2022-09-18T13:18:15Z",
          "currency": "eur",
          "product_id": 185
        },
        "meta": {
          "pagination": {
            "total": 1,
            "count": 1,
            "per_page": 50,
            "current_page": 1,
            "total_pages": 1
          }
        }
      }
    },
    {
      "status": "429",
      "contentType": "application/json",
      "name": "response",
      "example": {
        "status": 429,
        "title": "Too many requests",
        "type": "/api-docs/getting-started/api-status-codes",
        "errors": {}
      }
    }
  ]
}