Skip to main content
DELETE
/
api
/
v1
/
hub
/
shop
/
{shopId}
/
collections
/
{collectionId}
/
products
/
{productId}
Remove Product from Collection
curl --request DELETE \
  --url https://api.getscale.ng/api/v1/hub/shop/{shopId}/collections/{collectionId}/products/{productId} \
  --header 'X-Shop-API-Key: <x-shop-api-key>'
{
  "status": "success",
  "message": "Product removed from collection successfully"
}
Unbinds a specific product from a curated collection.

Authorizations

X-Shop-API-Key
string
required
Your Secret API Key (sk_live_... or sk_test_...) generated from the Developer dashboard. Must be kept secret.

Path Parameters

shopId
string
required
The unique UUID of the shop.
collectionId
number
required
The unique collection ID.
productId
number
required
The product ID to remove.
{
  "status": "success",
  "message": "Product removed from collection successfully"
}