Add/Remove Bulk Inventory
https://api.commerceup.io/v1/:projecthash/bulkincrementinventory
Used to Add Inventory to existing quantity of products in Bulk. This will add or subtract the value sent for the SKU from the quantity already in CommerceUp.
Quantity Must be Send in Positive if you want to Add to Existing Quantity.
Quantity Must be Send in Negative if you want to Remove From Existing Quantity
Body Parameters
{ "inventory" :
[ {"sku":"515",quantity:5},
{"sku":"516",quantity:-3}
]
}
Link Remote Product ID to Commerceup Product
https://api.commerceup.io/v1/:projecthash/bulklinkproduct
Used to Add Inventory to existing quantity of products in Bulk. This will add or subtract the value sent for the SKU from the quantity already in CommerceUp.
Quantity Must be Send in Positive if you want to Add to Existing Quantity.
Quantity Must be Send in Negative if you want to Remove From Existing Quantity
Body Parameters
{ "products" :
[ {"sku":"515",remoteId:1001},
{"sku":"516",remoteId:1002}
]
}