Duplicate a product
Products
Duplicate a product
Creates a copy of an existing product in the same store.
POST
Duplicate a product
Creates a copy of an existing product in the same store. The copy’s name is suffixed with “(Copy)” and a fresh slug, IDs and timestamps are generated. Requires the
WRITE_INVENTORY scope.Authorizations
Installed-app access token (prefix app_), issued by the OAuth install flow. The store is bound to the token server-side — never send a shop id.
Path Parameters
ObjectId of the product to duplicate.
Response
Duplicate a product — success.
Example:
201
Example:
true
Example:
"Duplicate a product"
An ecommerce catalog product.
Example:
{
"_id": "66a1f9aae1b3a40012ab9999",
"name": "Classic Tee (Copy)",
"slug": "classic-tee-copy",
"description": "Soft cotton t-shirt",
"price": 19.99,
"weight": 0.3,
"quantity": 120,
"category": "66a1f0aae1b3a40012ab1100",
"images": [
"https://cdn.salesive.com/p/classic-tee.jpg"
],
"featured": true,
"listed": true,
"shop": "66a1eee0e1b3a40012ab0001",
"createdAt": "2026-06-28T09:05:00.000Z",
"updatedAt": "2026-06-28T09:05:00.000Z"
}

