Authorize.net CIM - How to delete a customer profile from Authorize.net CIM -


in project creating customer profile (not payment profile) in authorize.net (cim) each user registration, have implemented that. have delete these customer profiles (not payment profile) dynamically i.e when site admin deleting each user project, have delete customer profile authorize.net merchant account.

please me!!!!

as per authorize.net cim xml guide use deletecustomerprofileresponse api call on page 57:

this function used delete existing customer profile along associated customer payment profiles , customer shipping addresses.

<?xml version="1.0" encoding="utf-8"?> <deletecustomerprofilerequest xmlns="anetapi/xml/v1/schema/anetapischema.xsd">   <merchantauthentication>     <name>youruserlogin</name>     <transactionkey>yourtrankey</transactionkey>   </merchantauthentication>   <customerprofileid>10000</customerprofileid> </deletecustomerprofilerequest> 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -