Multiple merchant accounts with Activemerchant gem.
Posted
by sosborn
on Stack Overflow
See other posts from Stack Overflow
or by sosborn
Published on 2010-05-13T23:43:42Z
Indexed on
2010/05/14
5:04 UTC
Read the original article
Hit count: 364
I am developing a rails site that will allow a group of merchants (5 - 10) to accept credit card orders online. I plan on using the Activemerchant gem to handle the processing.
In this case, each merchant will have their own merchant accounts to handle the payments. Storing banking information like that is not something I am a fan of. This could be solved by queing orders and allowing the merchant to log in to the site, input their credentials and process the order.
However, if I go that route then it seems to me that I would have to store the customers' credit card information temporarily until the merchant has the opportunity to log in and process the order, which to me is the greater evil.
Has anyone dealt with this situation? If so, what are the options available and what pitfalls should I look out for? In my mind, security customer credit card information is priority number one with the merchant account information a close second.
© Stack Overflow or respective owner