Can you cancel a PayPal automatic payment via API? (Subscription created via Hosted button)
Asked Answered
T

5

25

Can you cancel a PayPal automatic payment via API? It's a "Subscription" created via Hosted button.

I have the "Automatic payment number" and the "Transaction ID".

Talbott answered 28/9, 2010 at 3:59 Comment(0)
L
26

Yes.

You can suspend or cancel a profile by using the ManageRecurringPaymentsProfileStatus API. You can also reactivate a suspended profile. If the maximum number of failed payments has already been reached, however, you will need to increase the number of failed payments before reactivating the profile.

Please find this Reference:

Accodring to PAYPAL you can take any of three actions utilizing the ManagerecurringPayments API.

  • Cancel - Only profiles in Active or Suspended state can be canceled.
  • Suspend - Only profiles in Active state can be suspended.-
  • Reactivate - Only profiles in a suspended state can be reactivated.--
Linguini answered 28/9, 2010 at 11:10 Comment(3)
Isn't this just for "Paypal Pro/Express payments"? The OP is talking about the regular paypal Subscription system.Trainload
You can not cancel old subscription using API as mentioned in the answer below.Omnipotent
You CAN cancel an 'old' subscription, you cannot view the details of an 'old' subscription with the API.Loathsome
L
5

I found this thread before finding a solution, and thought I'd come back to give the answer. (C#.Net Solution)

You will require the following nuget packages:

Install-Package RestApiSDK
Install-Package PayPalCoreSDK
Install-Package PayPalMerchantSDK

And the following references:

using PayPal.Api;
using PayPal.PayPalAPIInterfaceService;
using PayPal.PayPalAPIInterfaceService.Model;

Here's the code:

public static void CancelRecurringPayment(string ProfileID)
{
    ManageRecurringPaymentsProfileStatusRequestType request =
        new ManageRecurringPaymentsProfileStatusRequestType();
    ManageRecurringPaymentsProfileStatusRequestDetailsType details =
        new ManageRecurringPaymentsProfileStatusRequestDetailsType();
    request.ManageRecurringPaymentsProfileStatusRequestDetails = details;

    details.ProfileID = ProfileID;

    details.Action = StatusChangeActionType.CANCEL;

    // Invoke the API
    ManageRecurringPaymentsProfileStatusReq wrapper = new ManageRecurringPaymentsProfileStatusReq();
    wrapper.ManageRecurringPaymentsProfileStatusRequest = request;

    Dictionary<string, string> configurationMap = new Dictionary<string, string>();

    configurationMap.Add("mode", "live");
    // Signature Credential
    configurationMap.Add("account1.apiUsername", "APIUSERNAME");
    configurationMap.Add("account1.apiPassword", "APIPASSWORD");
    configurationMap.Add("account1.apiSignature", "APISIGNATURE");

    // Create the PayPalAPIInterfaceServiceService service object to make the API call
    PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(configurationMap);

    ManageRecurringPaymentsProfileStatusResponseType manageProfileStatusResponse =
                service.ManageRecurringPaymentsProfileStatus(wrapper);

    // Check for API return status

    Dictionary<string, string> responseParams = new Dictionary<string, string>();
    responseParams.Add("API Status", manageProfileStatusResponse.Ack.ToString());

    if (manageProfileStatusResponse.Ack.Equals(AckCodeType.FAILURE) || (manageProfileStatusResponse.Errors != null && manageProfileStatusResponse.Errors.Count > 0))
    { 
        //FAILURE
        Console.WriteLine(manageProfileStatusResponse.Errors.ToString());
    }
    else
    {
        //SUCCESS
        Console.Write("Success!");
    }
    Console.WriteLine();
}
Loathsome answered 8/4, 2014 at 23:35 Comment(1)
Your code was excellent and to the point. It helped me solve my issue. Thanks.Cawthon
O
3

"A subscription is created via a Website Payments Standard 'Subscribe' button. Before 2009, the subscription profile ID started with S-XXXXXXXX. You are not able to manage these subscriptions via any API calls. After 2009, the subscription profile ID starts with I-XXXXXX. You are able to cancel these subscriptions via the ManageRecurringPaymentsProfileStatus API call."

Was having the same problem and just read it by Robert and it works, you can cancel standard website subscription using API.

Omnipotent answered 4/5, 2012 at 11:59 Comment(10)
What works? I have the same issue and I can't cancel S- subscriptions.Walterwalters
Yes, you won't be able to cancel 'S' prefix subscriptions using API.Omnipotent
How to create subscription with I- prefix?Walterwalters
Any new you create now using either API or Paypal page would be with I. S are just old ones.Omnipotent
I have created Subscription button this week and all subscription orders still comes with S- prefix.Walterwalters
That's weird. Is your business account new? Against which the subscription button is made.Omnipotent
I have business account. To create new button I go to My Account - Profile - My Selling Tools - PayPal Buttons - Create New Button. PayPal generate pay button link with parameter cmd=_s-xclick All subscription starts with S-Walterwalters
my cmd param is "_xclick-subscriptions", not _s-xclick. Perhaps that has something to do with it? Maybe you should revise your button code utilizing some other method than you are currently doing and then the "I" prefixed subscriptions will most likely come through.Receiptor
Not completely true. I have two paypal accounts. On one the subscriptions are all starting with S- They are not manageable. On the other they start with I- and are manageable by API. PayPal is a cancer :/Bascule
I know this thread is old - but I just want to let you know that I just wrote a Phantom.js script here that will enable you to cancel old S-* subscriptions from code. Saves us a lot of time. blog.degree.no/2015/10/…Milium
V
1
Vierra answered 26/10, 2015 at 13:26 Comment(0)
W
0

I don't think you can use the API to cancel a payment with Paypal standard payment event pro while only express checkout will work. I tried and got the error message: "Subscription Profiles not supported by Recurring Payment APIs.". You can find out more here.

Wellbred answered 29/1, 2013 at 7:32 Comment(1)
You will only get this error when trying to retreive subscription details. ''Any'' subscription can have it's status edited.Loathsome

© 2022 - 2024 — McMap. All rights reserved.