BigCommerce · Example Payload

Bigcommerce Getpricelists Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getpricelists 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": "getPriceLists",
  "method": "GET",
  "path": "/pricelists",
  "summary": "BigCommerce Get All Price Lists",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": [
          {
            "id": 1,
            "name": "Warehouse",
            "date_created": "2022-02-26T17:33:11Z",
            "date_modified": "2022-05-08T14:05:27Z",
            "active": true
          },
          {
            "id": 2,
            "name": "B2B",
            "date_created": "2022-02-26T17:37:01Z",
            "date_modified": "2022-02-26T17:37:01Z",
            "active": true
          },
          {
            "id": 3,
            "name": "Wholesale",
            "date_created": "2022-04-05T16:05:12Z",
            "date_modified": "2022-04-05T16:05:12Z",
            "active": true
          }
        ],
        "meta": {
          "pagination": {
            "total": 3,
            "count": 3,
            "per_page": 50,
            "current_page": 1,
            "total_pages": 1
          }
        }
      }
    }
  ]
}