We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently, I'm using the following to update information about a single product.
api.Products.get(1234).update(inventory_level=20)
Is there a way to update multiple products? I've tried something like this, but got a 404 error.
api.Products.get([123, 456]).update(inventory_level=20)
ERROR: 404 Not Found @ products/[123,456]: b'[{"status":404,"message":"The requested resource was not found."}]'
BigCommerce allow 10 product updates at a time, so I'm trying to see if that is possible. https://developer.bigcommerce.com/api-reference/catalog/catalog-api/products/updateproducts
Currently, I'm using the following to update information about a single product.
api.Products.get(1234).update(inventory_level=20)
Is there a way to update multiple products? I've tried something like this, but got a 404 error.
api.Products.get([123, 456]).update(inventory_level=20)
ERROR:
404 Not Found @ products/[123,456]: b'[{"status":404,"message":"The requested resource was not found."}]'
BigCommerce allow 10 product updates at a time, so I'm trying to see if that is possible.
https://developer.bigcommerce.com/api-reference/catalog/catalog-api/products/updateproducts