I am developing a vb.net app that will use the CIM module to store card data, and later charge it based on a payment schedule. I decided to use CIM instead of ARB because it seemed easier to work with, considering the payment amount and schedule might change. I will have a local process that runs scheduled charges automatically.
My question for the forum: is this a good idea? Are there pitfalls that may throw a wrench into this system?
It is implied that CIM data is stored indefinately, unless you send the command to delete it... is this true?
Thanks in advance...
-John Holm
Minneapolis, MN
Solved! Go to Solution.
01-04-2010 11:15 AM
Based on the criteria you've laid out I'd say this is a good idea. The variable payment amount and payment date would make using ARB less then an ideal choice but CIM could handle that easily when combined with your own scheduler.
And CIM will store data until you indefinitely delete the profile.
01-04-2010 11:52 AM
Based on the criteria you've laid out I'd say this is a good idea. The variable payment amount and payment date would make using ARB less then an ideal choice but CIM could handle that easily when combined with your own scheduler.
And CIM will store data until you indefinitely delete the profile.
01-04-2010 11:52 AM
Please help me I am looking forward to bill my client when usage is >= $50 how I will using the CIM. I am capturing all the usage and I am confused about how I will call the CIM profile .Do i need a scheduler as I am using PHP can I do through the PHP
05-02-2012 06:16 PM
Hi ajitdash,
You can use Customer Information Manager (CIM) to charge any amount once you created a profile for your customer. The language you are using doesn't matter as long as you follow the documentation for the CIM API.
Thanks,
Joy
05-04-2012 01:07 PM
Hi All!
I want to sell membership plans on my website. I need to implement recurring payment with Installments. E.g. we have a plan of $199 per 6 months and these $199 can be paid in 6 installments ($33-$33-$33-$33-$33-$34)
Thanks in advance
Ashwani
10-13-2012 08:45 AM
What have you tried?
10-14-2012 07:59 AM
With CIM, you'd create a customer profile and customer payment profile. You'd then set up a script to run automatically every morning, probably just before the Authorize.net batch process, that checks who's come due, generates a charge against their profile, then records the result in your database. This gives you total control, since you can vary the period, charge amount, or whatever as necessary. There's also less security exposure, since you can use Authorize.net's hosted CIM popups for the credit card data, as opposed to having it pass through your server like with AIM / ARB. If you care about that sort of thing, anyway.
10-14-2012 07:02 PM