01-04-2012 10:04 AM
Try changing the order around of the child elements of <profile>. Order does matter:
<?xml version="1.0"?>
<updateCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<merchantAuthentication>
<name>523452345523</name>
<transactionKey>234523452345234545</transactionKey>
</merchantAuthentication>
<profile>
<merchantCustomerId>12345</merchantCustomerId>
<description>Bob Wood1</description>
<email>bob@pinnaclep.com</email>
<customerProfileId>28539399</customerProfileId>
</profile>
</updateCustomerProfileRequest>
01-04-2012 10:11 AM - edited 01-04-2012 10:11 AM
Thx, that did it. It wanted the customerProfileId element last within the profile element. Funny!
01-04-2012 11:32 AM