Paypal API - get all subscriptions by subscriber

Viewed 20

There is an API call to find the subscription details etc, but what if I want to check all the subscriptions that a user has purchased? There's no API for that?

1 Answers

There is not. One of your users could have activated subscriptions with different payer accounts, it is not a 1:1 relationship (unless you were to enforce it) -- so you need to track this information in your own database.

Related