<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot set CustomerID and Description in Customer profile.... in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30678#M16039</link>
    <description>&lt;P&gt;So it from the sample CIM XML C# code. I try it and it work fine. I did use a test string of "123" and "abc". Did the console output show the xml input?&lt;/P&gt;</description>
    <pubDate>Wed, 17 Oct 2012 18:14:35 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-10-17T18:14:35Z</dc:date>
    <item>
      <title>Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30656#M16028</link>
      <description>&lt;P&gt;I am trying to set the merchantCustomerID and Description in the customer profile and when I set the ID the description is blank, but when I comment out that code the description is populated. This is just a simple property assignment, at least so I thought. Can you not have both filled in??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the C# XML example CustomerProfileAPIXML.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2012 22:17:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30656#M16028</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-16T22:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30658#M16029</link>
      <description>&lt;P&gt;It should work with both fields fill in. Can you post your code?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2012 22:50:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30658#M16029</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-16T22:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30672#M16036</link>
      <description>&lt;P&gt;Here is the code... The values that are being passed are just strings.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;///&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;summary&amp;gt;&lt;/SPAN&gt;
		&lt;SPAN&gt;///&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Create&amp;nbsp;the&amp;nbsp;customer&amp;nbsp;profile&lt;/SPAN&gt;
		&lt;SPAN&gt;///&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/summary&amp;gt;&lt;/SPAN&gt;
		&lt;SPAN&gt;///&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;returns&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;The&amp;nbsp;result&amp;nbsp;of&amp;nbsp;the&amp;nbsp;operation&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/returns&amp;gt;&lt;/SPAN&gt;
		&lt;SPAN&gt;public&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;static&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;long&lt;/SPAN&gt;&amp;nbsp;CreateCustomerProfile(&lt;SPAN&gt;CC_Customer&lt;/SPAN&gt;&amp;nbsp;cus)
		{
			&lt;SPAN&gt;long&lt;/SPAN&gt;&amp;nbsp;out_id&amp;nbsp;=&amp;nbsp;0;
			&lt;SPAN&gt;createCustomerProfileRequest&lt;/SPAN&gt;&amp;nbsp;request&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;createCustomerProfileRequest&lt;/SPAN&gt;();
			&lt;SPAN&gt;XmlAPIUtilities&lt;/SPAN&gt;.PopulateMerchantAuthentication((&lt;SPAN&gt;ANetApiRequest&lt;/SPAN&gt;)request);
 
			&lt;SPAN&gt;customerProfileType&lt;/SPAN&gt;&amp;nbsp;m_new_cust&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;customerProfileType&lt;/SPAN&gt;();
			&lt;SPAN&gt;//m_new_cust.email&amp;nbsp;=&amp;nbsp;"fake@example.com";&lt;/SPAN&gt;
			&lt;SPAN&gt;//m_new_cust.description&amp;nbsp;=&amp;nbsp;"Example&amp;nbsp;customer&amp;nbsp;"&amp;nbsp;+&amp;nbsp;(DateTime.Now.Ticks.ToString());&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;&lt;FONT size="3"&gt;m_new_cust.merchantCustomerId&amp;nbsp;=&amp;nbsp;cus.AcctNum;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;m_new_cust.description&amp;nbsp;=&amp;nbsp;cus.Name;&lt;/FONT&gt;&lt;/STRONG&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
			request.profile&amp;nbsp;=&amp;nbsp;m_new_cust;
 
			System.Xml.&lt;SPAN&gt;XmlDocument&lt;/SPAN&gt;&amp;nbsp;response_xml&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;null&lt;/SPAN&gt;;
			&lt;SPAN&gt;bool&lt;/SPAN&gt;&amp;nbsp;bResult&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;XmlAPIUtilities&lt;/SPAN&gt;.PostRequest(request,&amp;nbsp;&lt;SPAN&gt;out&lt;/SPAN&gt;&amp;nbsp;response_xml);
			&lt;SPAN&gt;object&lt;/SPAN&gt;&amp;nbsp;response&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;null&lt;/SPAN&gt;;
			&lt;SPAN&gt;createCustomerProfileResponse&lt;/SPAN&gt;&amp;nbsp;api_response&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;null&lt;/SPAN&gt;;
 
			&lt;SPAN&gt;if&lt;/SPAN&gt;&amp;nbsp;(bResult)&amp;nbsp;bResult&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;XmlAPIUtilities&lt;/SPAN&gt;.ProcessXmlResponse(response_xml,&lt;SPAN&gt;out&lt;/SPAN&gt;&amp;nbsp;response);
			&lt;SPAN&gt;if&lt;/SPAN&gt;&amp;nbsp;(!(response&amp;nbsp;&lt;SPAN&gt;is&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;createCustomerProfileResponse&lt;/SPAN&gt;))
			{
				&lt;SPAN&gt;ANetApiResponse&lt;/SPAN&gt;&amp;nbsp;ErrorResponse&amp;nbsp;=&amp;nbsp;(&lt;SPAN&gt;ANetApiResponse&lt;/SPAN&gt;)response;
				&lt;SPAN&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN&gt;"Create&amp;nbsp;Customer&amp;nbsp;Profile\n	&amp;nbsp;code:&amp;nbsp;{0}\n	&amp;nbsp;&amp;nbsp;msg:&amp;nbsp;{1}"&lt;/SPAN&gt;,&amp;nbsp;ErrorResponse.messages.message[0].code,&amp;nbsp;ErrorResponse.messages.message[0].text));
				&lt;SPAN&gt;return&lt;/SPAN&gt;&amp;nbsp;out_id;
			}
			&lt;SPAN&gt;if&lt;/SPAN&gt;&amp;nbsp;(bResult)&amp;nbsp;api_response&amp;nbsp;=&amp;nbsp;(&lt;SPAN&gt;createCustomerProfileResponse&lt;/SPAN&gt;)response;
			&lt;SPAN&gt;if&lt;/SPAN&gt;&amp;nbsp;(api_response&amp;nbsp;!=&amp;nbsp;&lt;SPAN&gt;null&lt;/SPAN&gt;)
			{
				out_id&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;Convert&lt;/SPAN&gt;.ToInt64(api_response.customerProfileId);
				&lt;SPAN&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN&gt;"Created&amp;nbsp;Profile&amp;nbsp;#"&lt;/SPAN&gt;&amp;nbsp;+&amp;nbsp;out_id);
				&lt;SPAN&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN&gt;String&lt;/SPAN&gt;.Format(&lt;SPAN&gt;"	&amp;nbsp;code:&amp;nbsp;{0}\n	&amp;nbsp;&amp;nbsp;msg:&amp;nbsp;{1}"&lt;/SPAN&gt;,&amp;nbsp;api_response.messages.message[0].code,&amp;nbsp;api_response.messages.message[0].text));
			}
 
			&lt;SPAN&gt;return&lt;/SPAN&gt;&amp;nbsp;out_id;
		}&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Oct 2012 16:37:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30672#M16036</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T16:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30678#M16039</link>
      <description>&lt;P&gt;So it from the sample CIM XML C# code. I try it and it work fine. I did use a test string of "123" and "abc". Did the console output show the xml input?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 18:14:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30678#M16039</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-17T18:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30682#M16041</link>
      <description>&lt;P&gt;Yeah, no errors when it ran. Just the CustomerID/Description doesn't populate when I see it on the Authorize.NET website. Are only one of these fields supposed to be populated?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 18:28:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30682#M16041</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T18:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30684#M16042</link>
      <description>&lt;P&gt;It not the error the console show the xml input. can you post that and masked out your loginID and transactionKey.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 18:49:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30684#M16042</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-17T18:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30686#M16043</link>
      <description>&lt;P&gt;I can't upload pictures locally... There are no errors. Everything comes back successful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 19:36:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30686#M16043</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T19:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30688#M16044</link>
      <description>&lt;P&gt;Is there anyway to debug this? It is referencing AnetApiSchema.cs and using XMLAPIUtilities which is using a web request. I can't get to the source file(s).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After running my code, the description didn't update, so I was able to manually update it through the Authorize.NET site. So the two fields can be populated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 20:06:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30688#M16044</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T20:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30690#M16045</link>
      <description>&lt;P&gt;Just ran it again and uncommented out the email so I was setting all three fields and it ran successfully and the description got popualted with the email and the email got populated correctly. How can we use this if the classes are not working correctly?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 20:08:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30690#M16045</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T20:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30692#M16046</link>
      <description>&lt;P&gt;You should be able debug it in PostRequest method and see what the xml generated. Again there isn't any error because the it did get create/update. Maybe it something in your data. it is XML encoded?&lt;/P&gt;&lt;P&gt;What we need is that input xml to see why.&lt;/P&gt;&lt;P&gt;example&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/
AnetApiSchema.xsd"&amp;gt; 
&amp;lt;merchantAuthentication&amp;gt;
&amp;lt;name&amp;gt;API Login ID here&amp;lt;/name&amp;gt;
&amp;lt;transactionKey&amp;gt;Transaction Key here&amp;lt;/transactionKey&amp;gt;
&amp;lt;/merchantAuthentication&amp;gt;
&amp;lt;profile&amp;gt;
&amp;lt;merchantCustomerId&amp;gt;Merchant Customer ID here&amp;lt;/merchantCustomerId&amp;gt;
&amp;lt;description&amp;gt;Profile description here&amp;lt;/description&amp;gt;
&amp;lt;email&amp;gt;customer profile email address here&amp;lt;/email&amp;gt;
&amp;lt;paymentProfiles&amp;gt;
&amp;lt;customerType&amp;gt;individual&amp;lt;/customerType&amp;gt;
&amp;lt;/paymentProfiles&amp;gt;
&amp;lt;/profile&amp;gt;
&amp;lt;validationMode&amp;gt;none&amp;lt;/validationMode&amp;gt;
&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 20:19:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30692#M16046</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-17T20:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30694#M16047</link>
      <description>&lt;P&gt;Can you also test it with hard coded value like 123 and abc.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 21:01:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30694#M16047</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-17T21:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30696#M16048</link>
      <description>&lt;P&gt;This is with all three fields filled out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR /&gt;&amp;lt;createCustomerProfileRequest xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instan" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instan&lt;/A&gt;&lt;BR /&gt;ce" xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema" target="_blank"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/An&lt;BR /&gt;etApiSchema.xsd"&amp;gt;&lt;BR /&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;*******&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;lt;transactionKey&amp;gt;******&amp;lt;/transactionKey&amp;gt;&lt;BR /&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;profile&amp;gt;&lt;BR /&gt;&amp;lt;merchantCustomerId&amp;gt;100000&amp;lt;/merchantCustomerId&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;Company Name&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;email&amp;gt;Company Name&amp;lt;/email&amp;gt;&lt;BR /&gt;&amp;lt;/profile&amp;gt;&lt;BR /&gt;&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is with description and CustomerID filled in. So it looks like the XML is correct.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createCustomerProfileRequest xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instan" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-instan&lt;/A&gt;
ce" xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema" target="_blank"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/An
etApiSchema.xsd"&amp;gt;
  &amp;lt;merchantAuthentication&amp;gt;
    &amp;lt;name&amp;gt;****&amp;lt;/name&amp;gt;
    &amp;lt;transactionKey&amp;gt;****&amp;lt;/transactionKey&amp;gt;
  &amp;lt;/merchantAuthentication&amp;gt;
  &amp;lt;profile&amp;gt;
    &amp;lt;merchantCustomerId&amp;gt;100000&amp;lt;/merchantCustomerId&amp;gt;
    &amp;lt;description&amp;gt;Company Name&amp;lt;/description&amp;gt;
  &amp;lt;/profile&amp;gt;
&amp;lt;/createCustomerProfileRequest&amp;gt;


&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createCustomerProfileResponse xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-insta" target="_blank"&gt;http://www.w3.org/2001/XMLSchema-insta&lt;/A&gt;
nce" xmlns:xsd="&lt;A href="http://www.w3.org/2001/XMLSchema" target="_blank"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" xmlns="AnetApi/xml/v1/schema/A
netApiSchema.xsd"&amp;gt;
  &amp;lt;messages&amp;gt;
    &amp;lt;resultCode&amp;gt;Ok&amp;lt;/resultCode&amp;gt;
    &amp;lt;message&amp;gt;
      &amp;lt;code&amp;gt;I00001&amp;lt;/code&amp;gt;
      &amp;lt;text&amp;gt;Successful.&amp;lt;/text&amp;gt;
    &amp;lt;/message&amp;gt;
  &amp;lt;/messages&amp;gt;
  &amp;lt;customerProfileId&amp;gt;10164800&amp;lt;/customerProfileId&amp;gt;
  &amp;lt;customerPaymentProfileIdList /&amp;gt;
  &amp;lt;customerShippingAddressIdList /&amp;gt;
  &amp;lt;validationDirectResponseList /&amp;gt;
&amp;lt;/createCustomerProfileResponse&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 21:52:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30696#M16048</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T21:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30700#M16049</link>
      <description>&lt;P&gt;The xml look good.&lt;/P&gt;&lt;P&gt;The next step is talk to the authorize.net support with your information and the customer profile id and see if they see anything.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 22:25:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30700#M16049</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-10-17T22:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set CustomerID and Description in Customer profile....</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30702#M16050</link>
      <description>&lt;P&gt;Unfortunately, I am being paid to do this, so I can't waist my time on something like this. I will just populate all three fields to get the two I want populated and then write some code to go in and delete the email field later. Thanks for your help though.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2012 22:38:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Cannot-set-CustomerID-and-Description-in-Customer-profile/m-p/30702#M16050</guid>
      <dc:creator>mgerbi</dc:creator>
      <dc:date>2012-10-17T22:38:12Z</dc:date>
    </item>
  </channel>
</rss>

