<?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 CIM createCustomerPaymentProfile in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/35507#M19837</link>
    <description>&lt;P&gt;I am using CIM - XML - PHP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can create a customerPaymentProfile successfully unil I can any of the following to &amp;lt;billTo&amp;gt;:&lt;/P&gt;&lt;P&gt;address, city, state, zip, country, then I get the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[E00003] The element 'billTo' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'address' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'faxNumber' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand how address, etc are invalid.&amp;nbsp; The sample code did not use these.&amp;nbsp; Am I missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Sep 2013 00:13:06 GMT</pubDate>
    <dc:creator>ed704</dc:creator>
    <dc:date>2013-09-05T00:13:06Z</dc:date>
    <item>
      <title>CIM createCustomerPaymentProfile</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/35507#M19837</link>
      <description>&lt;P&gt;I am using CIM - XML - PHP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can create a customerPaymentProfile successfully unil I can any of the following to &amp;lt;billTo&amp;gt;:&lt;/P&gt;&lt;P&gt;address, city, state, zip, country, then I get the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[E00003] The element 'billTo' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'address' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'faxNumber' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand how address, etc are invalid.&amp;nbsp; The sample code did not use these.&amp;nbsp; Am I missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2013 00:13:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/35507#M19837</guid>
      <dc:creator>ed704</dc:creator>
      <dc:date>2013-09-05T00:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: CIM createCustomerPaymentProfile</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/35509#M19838</link>
      <description>&lt;P&gt;follow the xml documentation sample. sequence matter for the xml.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2013 01:04:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/35509#M19838</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-05T01:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: CIM createCustomerPaymentProfile</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/70219#M43081</link>
      <description>&lt;P&gt;We are using the JSON API and facing the same problem. I'm sure that JSON doesn't enforce any order for the elements.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works&lt;/P&gt;&lt;PRE&gt;{
  "createCustomerProfileRequest": {
    "merchantAuthentication": {
      "name": "5KP3u95bQpv",
      "transactionKey": "346HZ32z3fP4hTG2"
    },
    "profile": {
      "merchantCustomerId": "432652",
      "description": "Profile description here",
      "email": "customer-profile-email@here.com",
      "paymentProfiles": {
        "customerType": "individual",
        "billTo": {
          "firstName": "John",
          "lastName": "Doe",
          "address": "123 Main St.",
          "city": "Bellevue",
          "state": "WA",
          "zip": "98004",
          "country": "USA",
          "phoneNumber": "000-000-0000"
        },
        "payment": {
          "creditCard": {
            "cardNumber": "4111111111111111",
            "expirationDate": "2020-12"
          }
        }
      }
    },
    "validationMode": "testMode"
  }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whereas, this doesn't work.&lt;/P&gt;&lt;PRE&gt;{
  "createCustomerProfileRequest": {
    "merchantAuthentication": {
      "name": "5KP3u95bQpv",
      "transactionKey": "346HZ32z3fP4hTG2"
    },
    "profile": {
      "merchantCustomerId": "432652",
      "description": "Profile description here",
      "email": "customer-profile-email@here.com",
      "paymentProfiles": {
        "customerType": "individual",
        "payment": {
          "creditCard": {
            "cardNumber": "4111111111111111",
            "expirationDate": "2020-12"
          }
        },
        "billTo": {
          "firstName": "John",
          "lastName": "Doe",
          "address": "123 Main St.",
          "city": "Bellevue",
          "state": "WA",
          "zip": "98004",
          "country": "USA",
          "phoneNumber": "000-000-0000"
        }
      }
    },
    "validationMode": "testMode"
  }
}&lt;/PRE&gt;&lt;P&gt;Please help.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 10:59:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/70219#M43081</guid>
      <dc:creator>aneel11986</dc:creator>
      <dc:date>2020-01-03T10:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: CIM createCustomerPaymentProfile</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/70225#M43085</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A id="link_1" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/35076" target="_self"&gt;aneel11986&lt;/A&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;The Authorize.Net JSON is not RESTful and is converted to XML once received, thus the order is defined and requests must be submitted in the defined order documented in the &lt;A href="https://developer.authorize.net/api/reference/index.html" target="_self"&gt;API Reference Guide&lt;/A&gt; and &lt;A href="https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd" target="_self"&gt;schema&lt;/A&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Elaine&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 17:18:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-createCustomerPaymentProfile/m-p/70225#M43085</guid>
      <dc:creator>ElaineM</dc:creator>
      <dc:date>2020-01-03T17:18:24Z</dc:date>
    </item>
  </channel>
</rss>

