Collections create
Triggered when a collection is created.
Requires the collection access scope. Minimum supported version: 202007.
Request headers
The event that triggered this delivery, e.g. orders/create
orders/createBase64-encoded HMAC-SHA256 signature of the request body, generated with your app's Client Secret. Use it to verify the request comes from Shoplazza
The domain of the store that generated the event
example.myshoplaza.comThe API version used to serialize the payload
2025-06Deduplication ID for this delivery. It stays the same across retries of the same event—use it for idempotency
Request body
- Schema
- Example
collection object
idstringCollection ID
titlestringCollection name
handlestringCollection handle (a URL-friendly unique alias)
descriptionstringCollection description
MetaKeywordstringSEO keyword list
meta_titlestringSEO title of the collection
meta_descriptionstringSEO description of the collection
sort_orderstringSorting rule for products in the collection (see the create-collection API for possible values)
urlstringStorefront collection detail page URL (excluding the store domain)
created_atstringTime when the collection was created (ISO-8601 format)
updated_atstringTime when the collection was last updated (ISO-8601 format)
image object
Collection cover image
srcstringImage source URL
pathstringImage path (excluding the domain;
srcincludes the domain)widthintegerImage width in pixels
heightintegerImage height in pixels
{
"collection": {
"id": "string",
"title": "string",
"handle": "string",
"description": "string",
"MetaKeyword": "string",
"meta_title": "string",
"meta_description": "string",
"sort_order": "string",
"url": "string",
"created_at": "string",
"updated_at": "string",
"image": {
"src": "string",
"path": "string",
"width": 0,
"height": 0
}
}
}