Forum Moderators: open

Message Too Old, No Replies

In-house Form with outside payment vendor

can the data be matched

         

kmbrly75243

3:02 pm on Jan 12, 2006 (gmt 0)

10+ Year Member



I have a client who has built their own event registration form, but wants to outsource the payment processing piece only. ;(

My fear is that it will be a nightmare to match the data gathered from the in-house form with the data from the outside vendor. (7,000 - 10,000 attendees will register on-line)

volatilegx

5:19 pm on Jan 12, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Are you writing the application which does the processing? It should be pretty simple...

You take the incoming data and use curl or LWP to post it to the payment processor. The payment processor will have an API which specifies certain data field names. Usually they are pretty self-explanatory as to what type of data they are looking for. Most processers publish good documentation for their APIs.

When building the POST string, you simply assign the incoming data with the appropriate API field names, and wala, you have matched data. It really isn't difficult.