BigCommerce · Example Payload

Bigcommerce Getcategorytrees Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Getcategorytrees 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": "getCategoryTrees",
  "method": "GET",
  "path": "/catalog/trees",
  "summary": "BigCommerce Get All Category Trees",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": [
          {
            "id": 0,
            "name": "string",
            "channels": [
              0
            ]
          }
        ],
        "meta": {
          "pagination": {
            "total": 246,
            "count": 5,
            "per_page": 5,
            "current_page": 1,
            "total_pages": 50,
            "links": {
              "next": "?limit=5&page=2",
              "current": "?limit=5&page=1"
            }
          }
        }
      }
    }
  ]
}