Getting all subscriptions for a shopper

Learn how to get al subscriptions for a shopper.

To efficiently manage and understand your shopper's subscriptions, our API provides a straightforward method to retrieve detailed subscription information. By sending a simple GET request with a shopper's unique identifier or ERID, you can access comprehensive subscription data, including payment options, product details, and key subscription dates. This guide will walk you through making this request and interpreting the response, ensuring you have all the necessary information at your fingertips.

Retrieving subscription information is particularly useful in several scenarios:

  • Billing and invoicing: Before generating invoices or during billing cycles so you can update billing details or confirm subscription statuses.

  • Customer support: When handling customer inquiries or resolving subscription-related issues, such as upgrades, downgrades, or cancellations.

  • Subscription management: To monitor and manage the lifecycle of subscriptions, including renewals, expiration, and auto-renewal statuses.

  • Analytics and reporting: For creating detailed reports on subscription metrics, usage, and trends over time.

  • Personalized marketing: To tailor marketing communications based on the subscription details, such as renewal reminders or offers on additional features or services.

Send a GET /v1/subscriptions?shopperId={shopperId} request retrieve a shopper's subscription using the shopper's identifier or ERID,. You'll need to replace {shopperId} with the shopper’s actual identifier (shopperId) or external reference identifier (ERID).

curl --location --request GET 'https://api.digitalriver.com/v1/subscription?shopperId={shopperId or ERID}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic {Your_Authorization}' \

A successful request returns a 200 OK response containing the subscription details, including IDs, dates, quantities, product information, and payment options associated with the shopper's subscription.

Last updated