BigCommerce · Example Payload

Bigcommerce Createcategories Example

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Bigcommerce Createcategories 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": "createCategories",
  "method": "POST",
  "path": "/catalog/trees/categories",
  "summary": "BigCommerce Create Categories",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Create Category 36",
      "example": {
        "data": [
          {
            "category_id": 36,
            "category_uuid": "d2de0756-5e1d-4c72-9480-e1a3f7be4a34",
            "parent_id": 0,
            "tree_id": 1,
            "name": "Bath",
            "description": "<p>We offer a wide variety of products perfect for relaxing</p>",
            "views": 1050,
            "sort_order": 3,
            "page_title": "Bath",
            "meta_keywords": [
              "loofah",
              "bubbles"
            ],
            "meta_description": "string",
            "layout_file": "category.html",
            "image_url": "https://cdn8.bigcommerce.com/s-123456/product_images/d/fakeimage.png",
            "is_visible": true,
            "search_keywords": "string",
            "default_product_sort": "use_store_settings",
            "url": {
              "path": "/bath/",
              "is_customized": false
            }
          }
        ],
        "meta": {
          "total": 1,
          "success": 1,
          "failed": 0
        }
      }
    }
  ]
}