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
Post a Comment