AuthNetTools.cfc
Below is the code used to query authorize.net's Customer Info Manager for the customer below. Each customer may have multiple
payment profiles and shipping addresses. AuthNetTools.cfc will return 2 queries. One with the customer's payment profiles and one with the shipping addresses.
<CFSET args = StructNew()>
<cfset args.login = variables.login>
<cfset args.transactionkey = variables.transactionkey>
<cfset args.customerProfileId = variables.CIMprofile>
<cfset myVar = request.AuthNetTools.getCustomerProfile(argumentCollection=args)>
Return to AuthNetTools.cfc Introduction
Click Here View The Documentation
|