Products
Learn how to retrieve product information.
You can retrieve products programmatically.
Getting volume pricing for a specific product
The GET /v1/shoppers/me/products/{productId}/pricing/volume-pricing
request retrieves volume pricing for a specific product by its product identifier (productId
).
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/products/{productId}/pricing/volume-pricing' \
--header 'authorization: bearer ***\
...
Getting all products from the product catalog
The GET /v1/shoppers/me/products
request retrieves all products from the catalog.
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/products' \
--header 'authorization: bearer ***\
...
Getting a product by identifier
The GET /v1/shoppers/me/products/{productId}
request retrieves a specific product by its product identifier (productId
).
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/products/{productId}' \
--header 'authorization: bearer ***\
...
Getting all products for a specified category
The GET /v1/shoppers/me/categories/{categoryId}/products
request retrieves all products for a specified category (categoryId
).
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/categories/{categoryId}/products' \
--header 'authorization: bearer ***\
...
Last updated
Was this helpful?