Retrieving all point of promotion offers for a specific product

Learn how to retrieve all point of promotion (POP) offers for a specific product.

You can retrieve all point of promotion (POP) offers for a specific product identifier (productId) by submitting a GET /v1/shoppers/me/products/{productId}/point-of-promotions/{popName}/offers request. A successful request returns a 200 OK response.

The retrieved offers include the following:

  • All always-triggered offers

  • All promotional URLs and externally triggered offers, even if an offer is not triggered

  • All coupon code offers, even if an offer is not triggered

curl --location --request GET 
'https://api.digitalriver.com/v1/shoppers/me/products/{productId}/point-of-promotions/{popName}/offers' \
--header 'Authorization: Bearer <API_key>' \
...

Last updated