Triggered when a product is created.
Product ID (generated automatically by the catalog).
Product name.
Product price.
Whether the product is visible to customers.
Media items (images, videos, etc.) associated with this product.
Product stock keeping unit (SKU). If variants are being managed, this will be empty.
Product page URL for this product (generated automatically by the server).
Product brand.
Cost and profit data
Information about the version of the catalog from where this event was triggered.
Event slug. A human readable identifier of the event.
The data payload will include the following as an encoded JWT:
{
"data": {
"eventType": "com.wix.ecommerce.catalog.api.v1.ProductCreated",
"instanceId": "<app-instance-id>",
"data": "<stringified-JSON>",
// The identity field is sent as a stringified JSON
"identity": {
"identityType": "<identityType>", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP
"anonymousVisitorId": "<anonymousVisitorId>", // in case of ANONYMOUS_VISITOR
"memberId": "<memberId>", // in case of MEMBER
"wixUserId": "<wixUserId>", // in case of WIX_USER
"appId": "<appId>" // in case of APP
}
}
}
{
"productId": "6693f74a-2a79-0bb7-00ef-2b8581bc8757",
"name": "my product",
"priceData": {
"currency": "USD",
"price": 32,
"discountedPrice": 30.4,
"formatted": {
"price": "32.00 ₪",
"discountedPrice": "30.40 ₪"
}
},
"visible": true,
"media": {
"mainMedia": {
"thumbnail": {
"url": "https://static.wixstatic.com/media/689fa9dd0c7f47d4b45a0b78afccdc8a.jpg/v1/fit/w_50,h_50,q_90/file.jpg",
"width": 50,
"height": 50
},
"mediaType": "image",
"title": "",
"image": {
"url": "https://static.wixstatic.com/media/689fa9dd0c7f47d4b45a0b78afccdc8a.jpg/v1/fit/w_5760,h_3840,q_90/file.jpg",
"width": 5760,
"height": 3840
},
"id": "689fa9dd0c7f47d4b45a0b78afccdc8a.jpg"
},
"items": [
{
"thumbnail": {
"url": "https://static.wixstatic.com/media/689fa9dd0c7f47d4b45a0b78afccdc8a.jpg/v1/fit/w_50,h_50,q_90/file.jpg",
"width": 50,
"height": 50
},
"mediaType": "image",
"title": "",
"image": {
"url": "https://static.wixstatic.com/media/689fa9dd0c7f47d4b45a0b78afccdc8a.jpg/v1/fit/w_5760,h_3840,q_90/file.jpg",
"width": 5760,
"height": 3840
},
"id": "689fa9dd0c7f47d4b45a0b78afccdc8a.jpg"
}
]
},
"sku": "38473",
"productPageUrl": {
"base": "https://my-website.com",
"path": "/product-page/my-product"
}
}