Accepting monthly payments CC input?

Hi guys, I want to accept subscription payments that will be automatically charged once a month on the customer's credit card.
I want to create my own cc entry form on an https web page, have it processed in the background, sent back to me with authorize or rejected and then thank the customer. I then want the card to be processed automatically every month and then allow customers to cancel through a form in real time.
I want the payment to not take the user to a third party site. I also want to completely customize the look of the payment pages.
Is my only option PayPal?
Do you recommend Pay Pal for this? What else is out there?

Paypal is certainly not your only option but my suggestion, depending on your timeline, is to use paypal.  Not only is it the easiest, quickest way for you to implement your payment system, it's also a "trusted" way of payment for customers.  My experience is customers are more comfortable paying through paypal for the same product vs. entering their credit card information on a "random" site they are visiting.  They don't know you well enough to trust you.  They know paypal though.
I've never done it but I would think in order for the CC to be processed in the background immediately, you'd have to work with the company in which you're a registered merchant.  They probably have some tips and tools for you to use.
Good luck.  And if you find that it's easier than I thought, let me know.  I may be asking for your help. ;-)

Similar Messages

  • Apple Care Monthly Payment

    Hi guys,
    I have this Macbook pro 2011. It doesn't have Apple care and I want to buy one but I dont have enough money. I just want to know if Apple are accepting Monthly Payment. If Yes, could please show me how to apply for the monthly payment.
    Thanks

    You have until 1 year from purchasing the MBP to buy AppleCare.  You can save up until then.
    Else, AppleCare is sold by many places that accept credit cards or carry their own in-store credit of some kind.  You can pursue those paths.

  • Huge increase in monthly payments AND billed for w...

     I moved back to BT for calls a couple of years ago and set up a monthly payment plan to help with the cost as I'm on  a low income. In March I also signed up for BT Broadband. My payments up until then had been £45 a month, BT anytime plan ( I use about £12 a month on non-inclusive calls to mobiles)  I thought this was high  just for calls but was told this was as low as they would allow.  On checking my online account recently I discovered that the monthly payment has now increased to £81!?   I knew that adding the Broadband would increase the payment but almost double it??
    This was apparently due to the way BT now bill. Fair enough but surely it's unfair to pass on such a huge increase in payments for something BT have chosen to do - and with little notice.
     Anyway, long story short - I decided to allow a couple of these £81 payments to come out of my account so as to clear what was a £36 CREDIT and is now a £124 Debit, due to the changes,  and then call and ask if the payments could be reduced.
     Imagine my anger when checking my bank account the other day to discover that BT had tried to debit £82 from my account for the WHOLE BILL AMOUNT! Unfortunately I did not have the money in the account and the direct debit was returned - leaving me with a £30 bank charge for a returned debit that should not have been taken in the first place. I phoned CS an was told  'sorry, our mistake'.
     Where do I stand with regard to having this charge reimbursed to me? I cannot afford to lose £30 due to BT's incompetence. 
    Could a mod please look into this for me and let me know how I can reclaim the bank charge? And is there any chance my monthly payments could be reduced?
    Thank you.

    Hi onlythebun
    I'll be happy have a look into this and see whats going on.
    Could you email me at [email protected] with your BT account and telephone number please along with a link back to this thread.
    Cheers
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Using Javascript to calculate monthly payments on form

    I have a single page form where I would like to be able to
    allow the user to choose between making a one time payment or
    monthly payments for a user defined amount. I could easily break
    the form into two pages and calculate the value of the monthly
    payments and display it on the second page if the user selected the
    monthly payment option. What I would like is a single page where
    the monthly payment is determined on the fly when either the user
    selects the monthly payment radio button or when the user defined
    dollar amount is entered.
    I think I have the function determined to do the calculation
    for the monthly payment but I'm unsure as to how to get cf to read
    or display the value. I was trying to use the following with no
    luck:
    <input type=radio name=Installments value="Yes" tabindex=1
    onClick="calculatemonthlypayment(document.forms[0].DonationAmount)">
    <script type="text/javascript">
    function calculatemonthlypayment(donation)
    monthlypayment=(donation/12)
    return monthlypayment
    </script>
    Then trying to output the result like this:
    <cfoutput><input type="text" readonly="yes"
    value="#dollarformat(monthlypayment)#"></cfoutput>
    Any idea what I'm doing wrong or missing? Or is there a much
    better way to accomplish this?

    > <cfoutput><input type="text" readonly="yes"
    value="#dollarformat(monthlypayment)#"></cfoutput>
    You cannot do that. CF code is executed on the server
    (first). The resulting javascript (html, css, ...) code is then
    sent to the browser where it is executed. Since javascript code is
    executed in the client browser,
    after the CF code is already finished, the variable
    "monthlypayment" doesn't exist as far as CF is concerned.
    You can use javascript to both read the donation text field
    amount and calculate the "monthlypayment" amount to display. Here
    is a simple example. You'll need to add validation and number
    formatting.

  • GUI Monthly Payment

    Hi Guys!
    I want build a mortgage calulator that calculates the monthly payment. I want to create 3 text fields that accepts the Interest Rate, Number of years, and mortgage amount. The 2 result would then be displayed in two labels. (Total monthly payment and amount of interest). I am getting an error on the equation, can someone please help me out.
    The errors are highlighting the divsion, addition, and mult. sign.
    Thanks
    Here's my code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class mortgage extends JApplet {
    private int APPLET_WIDTH = 300, APPLET_HEIGHT = 500;
    private int pushes;
    private JLabel label, mortLabel, rateLabel, loanLabel, payLabel;
    private JButton push;
    private JTextField mortgage, rate, loan;
    public void init ()
    pushes = 0;
    push = new JButton ("Calculate");
    push.addActionListener (new ButtonListener());
    mortLabel = new JLabel ("Enter Mortgage Rate:");
    rateLabel = new JLabel ("Enter Interest Rate:");
    loanLabel = new JLabel ("Enter Loan Duration:");
    label = new JLabel ("---");
    mortgage = new JTextField (5);
    mortgage.addActionListener(new ButtonListener());
    rate = new JTextField (5);
    rate.addActionListener(new ButtonListener());
    loan = new JTextField (5);
    loan.addActionListener(new ButtonListener());
    Container cp = getContentPane();
    cp.setBackground (Color.orange);
    cp.setLayout (new FlowLayout());
    cp.add (push);
    cp.add (label);
    cp.add (mortLabel);
    cp.add (rateLabel);
    cp.add (loanLabel);
    cp.add (payLabel);
    cp.add (mortgage);
    cp.add (rate);
    cp.add (loan);
    setSize (APPLET_WIDTH, APPLET_HEIGHT);
    private class ButtonListener implements ActionListener
    public void actionPerformed (ActionEvent event)
    int mortTemp, loanTemp, rateTemp, payTemp;
    String text = mortgage.getText();
    String text1 = rate.getText();
    String text2 = loan.getText();
    payTemp = loan * mortgage / ((1 / rate) - (1/(rate *(1 + rate)^loan)));
    payLabel.setText (Integer.toString (payTemp));

    You appear to be trying to do arithmetic on Swing GUI objects. I'm not surprised the compiler objects.
    By the way, the ^ operator in Java does not do exponentiation, but is a bitwise exclusive OR.
    Sylvia.

  • Vendor down payment with input tax

    Dear Expert
    My client receieves down payment with input tax, to meet their legal requirement for VAT filing, they have to book entries as below;
    When receieving down payment with input tax:
    Dr. Down payment
          Input tax
      Cr. Bank
    When receiveing vendor invoice for remaining AP amount:
    Dr. Expense
          Input tax
      Cr. AP (remaining amount)
    Then clear down payment by expense
    Dr. Expense
      Cr. Down payment
    They do in this way, because input tax in down payment and input tax in remaining AP invoice should be listed as two items in their VAT report. And intput tax in down payment document is with reference field which is different from reference field in remaining AP invoice, and reference field is also one mandatory field in VAT report.
    In this case, I can not use SAP standard T-code F-54 to clear down payment. But when I tried to create a manual JV to post entry with Dr. Expense and Cr. Down payment, it's OK, but then when I used F-44 to manully clear down payment doc by manual JV, I got problem because the amount in down payment is down payment amount + input tax amount, but the amount in manual JV is only down payment.
    Does someone have a solution?
    Thanks,
    Nicole

    Nicole,
    Which country is this requirement for?  As far as I know, there is no tax incidence on downpayment.  Input tax arises only when you receive the invoice, right?  Not when you receive a downpayment.

  • I would like to know which bank is accepted as payment through credit card in istore

    I would like to know which banks is accepted as payment through credit card in istore
    Im planning to buy macbook air

    You don't say where you are. Apple's Help pages for the USA store say:
    The Apple Online Store U.S. accepts credit, debit, or check cards associated with a billing address within the 50 United States and the following U.S. territories:
    American Samoa
    Armed Forces Africa
    Armed Forces Americas
    Armed Forces Canada
    Armed Forces Europe
    Armed Forces Middle East
    Armed Forces Pacific
    Guam
    Northern Mariana Islands
    Palau
    Puerto Rico
    U.S. Virgin Islands
    In the U.S., we accept:
    American Express
    Discover
    MasterCard
    Visa
    (end quote). The bank actually issuing a card such as Visa or MasterCard is immaterial.
    In the UK Apple accepts
    VISA
    MasterCard
    American Express
    Maestro/Switch
    Solo
    both credit and debit cards.

  • My Creative Cloud subscription has expired, and I assigned the monthly payment, but I can not open any progam creative cloud, I need help how to solve this problem

    my Creative Cloud subscription has expired, and I assigned the monthly payment, but I can not open any progam creative cloud, I need help how to solve this problem

    Carlos-
    Start by signing out and back in to see if it will see the subscription: 
    How to sign in and sign out of creative cloud (activate/deactivate)
    If the apps are installed fine and close after launch see this link:
    CC applications close immediately after launch
    If the problem is something different, please let us know the error you see or what is happening on the screen so we can advise  you on a solution
    Pattie

  • Hi there, I made the monthly payment for the Adobe apps, i managed to download Illustrator and Photoshop but can't seem to download Indesign. It says that "file seems to be corrupted... try later". How do I solve this problem?

    Hi there, I made the monthly payment for the Adobe apps, i managed to download Illustrator and Photoshop but can't seem to download Indesign. It says that "file seems to be corrupted... try later". How do I solve this problem?

    Hi shuster9,
    It seems the downloaded setup for InDesign has got corrupt.
    Could you please clear the TEMP from your computer and then retry.
    Thanks,
    Manish Sharma

  • I missed my monthly payment due to insufficient funds. How do I fix this?

    I missed my monthly payment due to insufficient funds. How do I fix this?

    Make sure you have the funds in the account for that card, and Adobe will take care of it. They will keep trying until either you cancel the account or the payment has been made.

  • Paid bill and switched to monthly payments...

    Hi, I just paid my bill in full and have now swtiched to monthly direct debits to avoid the payment charges. My question is this, as I was billed in advance for line rental etc, when will BT start collecting the monthly payments, as surely I am now in credit for 3 months? Will they just collect any call charges for the next 3 months?
    Thanks in advance 

    If you have moved to the Monthly Payment Plan (quarterly bills with regular monthly payments), your monthly payment should include line rental, package costs and call charges. This means that you will have more or less paid the next bill by the time it arrives. (There will be some discrepancy because call charges vary, but this is catered for by subsequent reviews of your monthly payment.)
    On the other hand, if you have changed to monthly billing, I would expect the next 3 bills to be for calls only and subsequent ones to include a month's line rental and package charges in advance. But you don't always get what you expect, and in this case I would check with BT via Live Chat.
    You can click the white star next to this message if you think it was helpful.

  • Re: Can't increase monthly payments online

    SORRY HAD TO COME THROUGH YOUR POST TO ASK QUESTION DONT REALLY UNDERSTAND HOW TO USE FORUM . ANYWAY 6 JUNE CONTACTED BT ABOUT CHANGING BILL DATE FROM 22 TO 30 OF MONTH SAID I COULDNT DO IT COS I PAY IN FULL EVERY MONTH ANYWAY THEY SUGGESTED I CHANGE TO MONTHLY PAYMENT PLAN AND PAY 70 POUND MONTH I WAS CONCERNED COS I DO TAKE BOX OFFICE FOR KIDS AND DONT WANT TO HAVE ANY ARREARS ANYWAY RECIEVED EMAIL THIS MORNING AND THEYVE UPD MY BILL TO 107 A MONTH COS THEY SAY I WONT BE PAYING ENOUGH . PHONED THEM WAS TOLD I HAD TAKEN OUT A QUARTERLY BILL WHICH I KNOW NOTHING ABOUT TOLD THEM I WANT TO CANCEL THEY SAY CANT UNLESS I PAY 213.93 YET I ONLY PHONED THEM ON 6 JUNE AND MY LAST FULL BILL WAS ON 22 MAY PAID IN FULL YET CHARGING IN ADVANCE TILL 6TH SEPT . HELP ANYBODY PLEASE

    Try an online chat, they may be able to help. Use this link
    https://bt.custhelp.com/app/contact/c/2902/?s_intcid=con_intban_sanda_contact_us_chat_from_forums
    If they can't help you could contact the forum moderators who are a BT UK based team and they may be able to help. They can take 3 working days to respond. Contact them by using this link
    https://bt.custhelp.com/app/contact_email/c/4951
    As an aside can you please take your typing off capitals. It is difficult to read and is considered as shouting on forums.

  • Can't increase monthly payments online

    I've just tried to up my monthly payments online but I got an error message and was advised to drop the payment amount instead of increasing it.
    I guess it's because I have a good credit balance at the moment, but the thing is, I know I have used a lot of BBtalk calls and extra broadband usage recently and expect to for the foreseeable future so I want to increase the monthly payments now rather than be faced with a large bill later on.
    Has anyone else encountered this problem?
    Del.
    Solved!
    Go to Solution.

    Hi Djh22
    It's not really how direct debits work on the Monthly Payment Plan system, on this system you don't really get a bill its more of a statement as because your on Direct Debit you don't receive things like reminder bills.
    If you really want to increase the amount I can try to do this for you but the system does tend to decrease again if there is a high credit balance on the account.
    Either way if you email me at [email protected] with your account details and the amount you would like me to increase it to.
    Cheers
    Stuart
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • I think i got ripped off by this verizon store , I got the 4 line $140.00 edge plan, which I had to pay for the phone in monthly payment, i did the math it was 268.00 total..  At check out this guy charge me $50.00 care package for each phone and sim card

    I think i got ripped off by this verizon store , I got the 4 line $140.00 edge plan, which I had to pay for the phone in monthly payment, i did the math it was 268.00 total..  At check out this guy charge me $50.00 care package for each phone and sim card which was $10.00 , $25.00 set up with TCP and he said the rest was tax.  I had to pay $474.36.. my brother went to costco and did the same verizon deal he didn't have to pay anything...

    Welcome to this forum.
    This is a customer to customer forum only, where forum members, who are only BT customers, can help each other with BT Retail products and services.
    Anything you post here does not go to BT. Although the forum is moderated by BT, not all posts are read.
    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Monthly Payment Plan & lack of care!

    I am in my mid 70's & I have been with bt for about 50 years for phone only. I have been on a monthly payment paln of varying amounts all under £30 a month. I thought I was on anytime call plan, however it was only weekemd calls. When BT restructured the prices of calling time and evening rates went up considerably, so do my bills. My last quarterly bill was £145 of which £91 was for calls to uk landlines £46 for line rental and £8 for other calls. BT called my and said my monthly payment plan payments were too low and they were putting them up to £79! I discovered when my last quarterly bill arrived that I was only getting weekend calls free. It is disappointing after being a customer for 50 years that when the customer service agent called me regarding my monthly payments that they didn't inform me why my bills were so high and suggest that they put me on anytime calls. However, they didn't and had a pensioner paying £60 a month more than necassary!!

    I would agree that you should be on Anytime calls, and you should arrange that straight away if you haven't already done it. That should cost £22.45 a month plus any non-inclusive charges.
    As to your monthly payments, it's not possible to say what you should be paying as that depends on how much of the £145 had not been covered by your credits. If you can post a bit more detail there might be some specific advice on that.
    In general terms though, my view is that the way adjustments to the monthly DD work can be a bit of a swindle, and I'm currently pursuing this with BT. As well as posting more detail, have a look in MyBT > My bill > Manage your payments > Change regular payment > Change payment details > tick "Change the amount you want to pay". When you click on the current amount what does it say in the pop-up box?
    You can click the white star next to this message if you think it was helpful.

Maybe you are looking for