- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
-------------------------------------------------------------------------------------------------------------------------------------------
John Conde :: Certified Authorize.Net Developer (Brainyminds) :: Official Authorize.Net Blogger
NEW! Handling Authorize.Net's Webhooks with PHP
Integrate Every Authorize.Net JSON API with One PHP Class (Sample code included)
Tutorials for integrating Authorize.Net with PHP: AIM, ARB, CIM, Silent Post
All About Authorize.Net's Silent Post
โ01-04-2010 11:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
-------------------------------------------------------------------------------------------------------------------------------------------
John Conde :: Certified Authorize.Net Developer (Brainyminds) :: Official Authorize.Net Blogger
NEW! Handling Authorize.Net's Webhooks with PHP
Integrate Every Authorize.Net JSON API with One PHP Class (Sample code included)
Tutorials for integrating Authorize.Net with PHP: AIM, ARB, CIM, Silent Post
All About Authorize.Net's Silent Post
โ01-04-2010 11:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What have you tried?
-------------------------------------------------------------------------------------------------------------------------------------------
John Conde :: Certified Authorize.Net Developer (Brainyminds) :: Official Authorize.Net Blogger
NEW! Handling Authorize.Net's Webhooks with PHP
Integrate Every Authorize.Net JSON API with One PHP Class (Sample code included)
Tutorials for integrating Authorize.Net with PHP: AIM, ARB, CIM, Silent Post
All About Authorize.Net's Silent Post
โ10-14-2012 07:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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