Product Collections
Published by Miranda Danielson on June 6, 2022
Last updated on December 4, 2024
New OrderCloud resource enabling buyer users to save lists of products. This feature can be used to build features like "Save For Later" (moving products from an active Order
to a ProductCollection
), favorite products, or custom wish lists.
Key Highlights
Only products visible to the buyer user (returned from
GET me/products
) can be added to aProductCollection
ProductCollections
have a limit of 500 products eachThere is no limit on how many
ProductCollections
an individual buyer user can createCurrently
ProductCollections
are only visible to the buyer user who created themWe may expand functionality in the future to allow making lists public within a buyer organization and/or sharing lists with specific users
New Resource: ProductCollection
1"ProductCollection": {2 "ID": "",3 "Name": "",4 "xp": {}5}
Endpoints:
GET v1/me/productcollections
GET v1/me/productcollections/{productCollectionID}
POST v1/me/productcollections
PUT v1/me/productcollections/{productCollectionID}
PATCH v1/me/productcollections/{productCollectionID}
DELETE v1/me/productcollections/{productCollectionID}
GET v1/me/productcollections/{productCollectionID}/products
List products in an existing collection
Subject to all product visibility requirements
PUT v1/me/productcollections/{productCollectionID}/{productID}
Add a product to an existing collection
DELETE v1/me/productcollections/{productCollectionID}/{productID}
Remove a product from an existing collection
Product Collection Entries
As of December 2024, we introduced a new endpoint to support adding a ListOrder
to ProductCollectionEntries
. This can help with things like sorting items in a custom wishlist, or saved for later items. All newly added ProductCollectionEntries
will also have a DateAdded populated, which can help with the same type of sorting functionality.
POST v1/productcollections/{productCollectionID}/products
ProductID
required in Request BodyListOrder
optional
Check out these new enhancements to ProductCollections
added in June 2023.
Still have questions?
Ask in our Community Channel