Can I send you the shipping and billing information so that you do not need to request it?
Here is the list of values that would be sent as hidden or text tags:
Ecom_BillTo_Postal_First_Name
Ecom_BillTo_Postal_Last_Name
Ecom_BillTo_Postal_CompanyName
Ecom_BillTo_Postal_Street_Line1
Ecom_BillTo_Postal_Street_Line2
Ecom_BillTo_Postal_City
Ecom_BillTo_Postal_State
Ecom_BillTo_Postal_Country
Ecom_BillTo_Postal_PostalCode
Ecom_BillTo_Online_Email
Ecom_BillTo_Telecom_Fax
Ecom_BillTo_Telecom_Phone_Number
Ecom_BillTo_Telecom_Phone_Number_2
Ecom_ShipTo_Postal_First_Name
Ecom_ShipTo_Postal_Last_Name
Ecom_ShipTo_Postal_CompanyName
Ecom_ShipTo_Postal_Street_Line1
Ecom_ShipTo_Postal_Street_Line2
Ecom_ShipTo_Postal_City
Ecom_ShipTo_Postal_State
Ecom_ShipTo_Postal_Country
Ecom_ShipTo_Postal_PostalCode
Ecom_ShipTo_Online_Email
Ecom_ShipTo_Telecom_Fax
Ecom_ShipTo_Telecom_Phone_Number
Ecom_ShipTo_Telecom_Phone_Number_2
Example
<input type="text" name="Ecom_BillTo_Postal_First_Name">
or
<input type="hidden" name="Ecom_BillTo_Postal_First_Name" value="John">
SameAsShipping -- if you set this value to 1, then you will not need to ask for the shipping address separately. It will automatically be set to the billing address values. This is recommended for merchants who do not need the shipping address, or would like to force them to the same address.
Example
<input type="hidden" name="SameAsShipping" value="1">
Only information that is marked as required on the Customize Shipping/Billing Page will need to be sent.
Please note that, in order for the values to be saved, you will need to send a hidden tag of:
Example
<input type="hidden" name="action" value="SetUserID">
Normally the above information will cause the shopping cart to completely skip asking the shopper for address information. However if you still need to direct your customer to the address page you can use the "GetUserInfo" parameter:
<input type="hidden" name="GetUserInfo" value="1">
|