Reputation: 65
Does anyone know is there any way to check status of recurring (subscription) payment at PayPal. I just want to submit transaction ID and to see is payment canceled (suspended) or it is still active.
Upvotes: 6
Views: 5024
Reputation: 26036
If you're using the Recurring Payments API you can use GetRecurringPaymentsProfileDetails to obtain details including the current status of the profile.
If you're working with Standard Subscriptions, though, then there is no API to obtain the details, unfortunately.
In either case, I'd recommend looking into Instant Payment Notification (IPN). Using it you could automate the process of sending email notifications, updating your own database, etc. when new profiles are created, suspended, re-activated, etc.
Upvotes: 4