<?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: createCustomerProfileFromTransactionRequest in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49307#M24895</link>
    <description>&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/api/reference/"&gt;http://developer.authorize.net/api/reference/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;search the function then the "try it" tab&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jan 2015 14:34:19 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2015-01-13T14:34:19Z</dc:date>
    <item>
      <title>createCustomerProfileFromTransactionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49304#M24892</link>
      <description>&lt;P&gt;I am looking to use "createCustomerProfileFromTransactionRequest" in the CIM XML API in C#. So I downloaded the xsd and generated a class file from it using the visual studio commandline xsd tool. It has generated my class no problems, howver it appears that "createCustomerProfileFromTransactionResponse" mentioned in: &lt;A target="_blank" href="http://www.authorize.net/support/CIM_XML_guide.pdf"&gt;http://www.authorize.net/support/CIM_XML_guide.pdf&lt;/A&gt; (page 84) isn't in the xsd. I checked again in the link in toe documentation and search for "createCustomerProfileFromTransactionResponse" in &lt;A target="_blank" href="https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd"&gt;https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd&lt;/A&gt; and it is not there. If I look at the request in the xsd it doesn't seem like creating customer profiles from transactions is comepleted, judging by the comment!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  &amp;lt;!-- 
 ===================================================================
 bla bla
 ===================================================================
 --&amp;gt;
  &amp;lt;xs:element name="createCustomerProfileFromTransactionRequest"&amp;gt;
    &amp;lt;xs:complexType&amp;gt;
      &amp;lt;xs:complexContent&amp;gt;
        &amp;lt;xs:extension base="anet:ANetApiRequest"&amp;gt;
          &amp;lt;xs:sequence&amp;gt;
            &amp;lt;xs:element name="transId" type="anet:numericString" minOccurs="1" maxOccurs="1" /&amp;gt;
          &amp;lt;/xs:sequence&amp;gt;
        &amp;lt;/xs:extension&amp;gt;
      &amp;lt;/xs:complexContent&amp;gt;
    &amp;lt;/xs:complexType&amp;gt;
  &amp;lt;/xs:element&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an xsd anywhere that has the correct information in, or am I going to have to manually write the class myself?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2015 12:45:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49304#M24892</guid>
      <dc:creator>jhird</dc:creator>
      <dc:date>2015-01-13T12:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: createCustomerProfileFromTransactionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49305#M24893</link>
      <description>&lt;P&gt;It seems that there is no createCustomerProfileFromTransactionResponse and what is actually returned is a createCustomerProfileResponse:&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;createCustomerProfileResponse
    xmlns:xsi="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema-instance&amp;quot;"&gt;http://www.w3.org/2001/XMLSchema-instance"&lt;/A&gt;
    xmlns:xsd="&lt;A target="_blank" href="http://www.w3.org/2001/XMLSchema&amp;quot;"&gt;http://www.w3.org/2001/XMLSchema"&lt;/A&gt;
    xmlns="AnetApi/xml/v1/schema/AnetApiSchema.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;xxxxxxxx&amp;lt;/customerProfileId&amp;gt;
    &amp;lt;customerPaymentProfileIdList&amp;gt;
        &amp;lt;numericString&amp;gt;xxxxxxxx&amp;lt;/numericString&amp;gt;
    &amp;lt;/customerPaymentProfileIdList&amp;gt;
    &amp;lt;customerShippingAddressIdList&amp;gt;
        &amp;lt;numericString&amp;gt;xxxxxxxx&amp;lt;/numericString&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;So I'm not sure what the createCustomerProfileFromTransactionResponse in the documentation is!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2015 13:11:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49305#M24893</guid>
      <dc:creator>jhird</dc:creator>
      <dc:date>2015-01-13T13:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: createCustomerProfileFromTransactionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49307#M24895</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/api/reference/"&gt;http://developer.authorize.net/api/reference/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;search the function then the "try it" tab&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2015 14:34:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/createCustomerProfileFromTransactionRequest/m-p/49307#M24895</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-01-13T14:34:19Z</dc:date>
    </item>
  </channel>
</rss>

