curl --request POST \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/collections/{collectionId}/products \
--header 'Content-Type: application/json' \
--data '
{
"productIds": [
"product-uuid-1",
"product-uuid-2",
"product-uuid-3"
]
}
'Add multiple products to a collection. Products must belong to the store. Requires MANAGE_PRODUCTS permission.
curl --request POST \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/collections/{collectionId}/products \
--header 'Content-Type: application/json' \
--data '
{
"productIds": [
"product-uuid-1",
"product-uuid-2",
"product-uuid-3"
]
}
'