our internal system uses:
https://api.authorize.net/xml/v1/request.api
and
https://secure.authorize.net/profile/addPayment
to setup a customer token.
This internal system opens a window that shows a basic form asking for customer information (to setup the customer profile, i think) but the form does not have an email address field.
I want it to. I think this is on Authorize.net side, but not sure.
how can I get this field to show or be added?
thanks.
โ12-14-2016 08:05 AM
I'm sending the email in with createCustomerProfileRequest. Once I have created the customer profiles, I use the add payment hosted form (https://accept.authorize.net/customer/addPayment) to add a payment profile. Finally, I charge the card via createTransactionRequest.
โ12-14-2016 08:45 AM
This is a form that is called up, so I haven't "sent" anything yet.
โ12-14-2016 09:20 AM
You send a token request first before calling up that form, and the email address would need to be in that token request. If you want the customer to enter that themselves, you'd need to collect that from them before doing the token request.
โ12-14-2016 02:02 PM