BigCommerce · Schema

store/category/created

Fires when a category is created. ```json filename="Example callback object" showLineNumbers { "created_at": 1561482670, "store_id": "1025646", "producer": "stores/{store_hash}", "scope": "store/category/created", "hash": "352e4afc6dd3fc85ea26bfdf3f91852604d57528", "data": { "type": "category", "id": 42 } } ```

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-store-category-created-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/store_category_created",
  "title": "store/category/created",
  "type": "object",
  "description": "Fires when a category is created.\n\n```json filename=\"Example callback object\" showLineNumbers\n{\n  \"created_at\": 1561482670,\n  \"store_id\": \"1025646\",\n  \"producer\": \"stores/{store_hash}\",\n  \"scope\": \"store/category/created\",\n  \"hash\": \"352e4afc6dd3fc85ea26bfdf3f91852604d57528\",\n  \"data\": {\n    \"type\": \"category\",\n    \"id\": 42\n  }\n}\n```",
  "x-examples": {},
  "allOf": [
    {
      "$ref": "#/components/schemas/webhook_callback_base"
    },
    {
      "$ref": "#/components/schemas/callback_category_data"
    }
  ],
  "x-tags": [
    "created"
  ],
  "x-internal": false
}