<?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: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id' in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77837#M48844</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/52122"&gt;@TomWinchester&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I even didn't face this kind of issue yet. But I would like to educate myself with new updates. Don't hesitate to share more updates if possible. I'm a student and I need to prepare my research paper. Most of the time I remain busy so I need a second hand who can help me regularly. Even I am ready to&amp;nbsp;&lt;SPAN&gt;buy a research paper&lt;/SPAN&gt;&amp;nbsp;from another source&amp;nbsp;&lt;A href="https://breakfasthoursofficial.com/whataburger-breakfast" target="_blank"&gt;https://breakfasthoursofficial.com/whataburger-breakfast&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://breakfasthoursofficial.com/chick-fil-a-breakfast-hours" target="_blank"&gt;https://breakfasthoursofficial.com/chick-fil-a-breakfast-hours&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://breakfasthoursofficial.com/panera-breakfast-hours" target="_blank"&gt;https://breakfasthoursofficial.com/panera-breakfast-hours&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;If you have any suggestion please don't hesitate to share. Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;thanks for the information.&lt;/P&gt;</description>
    <pubDate>Sun, 08 Aug 2021 14:36:39 GMT</pubDate>
    <dc:creator>yuvsaha123</dc:creator>
    <dc:date>2021-08-08T14:36:39Z</dc:date>
    <item>
      <title>Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77364#M48465</link>
      <description>&lt;P&gt;I am trying to send a JSON request to the test endpoint (&lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_blank" rel="noopener"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt;) for Accept Hosted Payment Page request.&amp;nbsp; I am getting an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{"code":"E00003","text":"&lt;FONT color="#FF0000"&gt;The element 'customer' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'id' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'driversLicense, taxId' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd&lt;/FONT&gt;'."}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not only do the docs have this field, but also the Schema.XSD does too!&amp;nbsp; What is going on?&amp;nbsp; Here's my model:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "getHostedPaymentPageRequest": {
        "merchantAuthentication": {
            "name": "XXXX",
            "transactionKey": "YYYY"
         },
&amp;nbsp; &amp;nbsp;     "transactionRequest": {
            "transactionType": "authOnlyTransaction",
            "amount": 48.00,
            "profile": {
                "customerProfileId": "ZZZZZZ"
            },
            "customer": {
                "email": "yourmom@yourmom.com",
                "id": "a4712a5e"
            },
            "billTo": {
                "firstName": "Your",
                "lastName": "Mom"
            },
            "order": {
                "invoiceNumber": "aninvoicenumber"
            }
        },
    [. . .]
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the XML spec that clearly has customer.id:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;xs:complexType name="customerDataType"&amp;gt;
    &amp;lt;xs:sequence&amp;gt;
        &amp;lt;xs:element name="type" type="anet:customerTypeEnum" minOccurs="0"/&amp;gt;
        &amp;lt;xs:element name="id" minOccurs="0"&amp;gt;
            &amp;lt;xs:simpleType&amp;gt;
                &amp;lt;xs:restriction base="xs:string"&amp;gt;
                    &amp;lt;xs:maxLength value="20"/&amp;gt;
                &amp;lt;/xs:restriction&amp;gt;
            &amp;lt;/xs:simpleType&amp;gt;
        &amp;lt;/xs:element&amp;gt;
        &amp;lt;xs:element name="email" minOccurs="0"&amp;gt;
            &amp;lt;xs:simpleType&amp;gt;
                &amp;lt;xs:restriction base="xs:string"&amp;gt;
                    &amp;lt;xs:maxLength value="255"/&amp;gt;
                &amp;lt;/xs:restriction&amp;gt;
            &amp;lt;/xs:simpleType&amp;gt;
        &amp;lt;/xs:element&amp;gt;
        &amp;lt;xs:element name="driversLicense" type="anet:driversLicenseType" minOccurs="0"/&amp;gt;
        &amp;lt;xs:element name="taxId" minOccurs="0"&amp;gt;
            &amp;lt;xs:simpleType&amp;gt;
                &amp;lt;xs:restriction base="xs:string"&amp;gt;
                    &amp;lt;xs:minLength value="8"/&amp;gt;
                    &amp;lt;xs:maxLength value="9"/&amp;gt;
                &amp;lt;/xs:restriction&amp;gt;
            &amp;lt;/xs:simpleType&amp;gt;
        &amp;lt;/xs:element&amp;gt;
    &amp;lt;/xs:sequence&amp;gt;
&amp;lt;/xs:complexType&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Jul 2021 23:09:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77364#M48465</guid>
      <dc:creator>jwellstcc</dc:creator>
      <dc:date>2021-07-14T23:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77365#M48466</link>
      <description>&lt;P&gt;Figured it out . . . like the specs say, the order of the JSON properties matters :(&amp;nbsp; So id has to come before email . . .&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 23:17:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77365#M48466</guid>
      <dc:creator>jwellstcc</dc:creator>
      <dc:date>2021-07-14T23:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77402#M48497</link>
      <description>&lt;P&gt;I even didn't face this kind of issue yet. But I would like to educate myself with new updates. Don't hesitate to share more updates if possible. I'm a student and I need to prepare my research paper. Most of the time I remain busy so I need a second hand who can help me regularly. Even I am ready to&amp;nbsp;&lt;SPAN&gt;buy a research paper&lt;/SPAN&gt;&amp;nbsp;from another source&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://studyclerk.com/buying-research-paper" target="_blank" rel="noopener"&gt;https://studyclerk.com/buying-research-paper&lt;/A&gt;&amp;nbsp;If you have any suggestion please don't hesitate to share. Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 08:35:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77402#M48497</guid>
      <dc:creator>TomWinchester</dc:creator>
      <dc:date>2021-07-16T08:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77426#M48511</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/52122"&gt;@TomWinchester&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I even didn't face this kind of issue yet. But I would like to educate myself with new updates. Don't hesitate to share more updates if possible. I'm a student and I need to prepare my research paper. Most of the time I remain busy so I need a second hand who can help me regularly. Even I am ready to&amp;nbsp;&lt;SPAN&gt;buy a research paper&lt;/SPAN&gt;&amp;nbsp;from another source&amp;nbsp;&lt;SPAN&gt;If you have any suggestion please don't hesitate to share. Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the awesome information.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 13:05:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77426#M48511</guid>
      <dc:creator>yuvsaha123</dc:creator>
      <dc:date>2021-07-17T13:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77837#M48844</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/52122"&gt;@TomWinchester&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I even didn't face this kind of issue yet. But I would like to educate myself with new updates. Don't hesitate to share more updates if possible. I'm a student and I need to prepare my research paper. Most of the time I remain busy so I need a second hand who can help me regularly. Even I am ready to&amp;nbsp;&lt;SPAN&gt;buy a research paper&lt;/SPAN&gt;&amp;nbsp;from another source&amp;nbsp;&lt;A href="https://breakfasthoursofficial.com/whataburger-breakfast" target="_blank"&gt;https://breakfasthoursofficial.com/whataburger-breakfast&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://breakfasthoursofficial.com/chick-fil-a-breakfast-hours" target="_blank"&gt;https://breakfasthoursofficial.com/chick-fil-a-breakfast-hours&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://breakfasthoursofficial.com/panera-breakfast-hours" target="_blank"&gt;https://breakfasthoursofficial.com/panera-breakfast-hours&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;If you have any suggestion please don't hesitate to share. Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;thanks for the information.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Aug 2021 14:36:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/77837#M48844</guid>
      <dc:creator>yuvsaha123</dc:creator>
      <dc:date>2021-08-08T14:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/78133#M49047</link>
      <description>&lt;P&gt;It looks like a great thread with lots of information. Thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 01:46:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/78133#M49047</guid>
      <dc:creator>LarryGoodwill</dc:creator>
      <dc:date>2021-08-23T01:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Payment Page E00003 The element 'customer' has invalid child element 'id'</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/78256#M49140</link>
      <description>&lt;P&gt;Great thread so far. Keep continue the good work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 01:40:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Payment-Page-E00003-The-element-customer-has/m-p/78256#M49140</guid>
      <dc:creator>BruceJason</dc:creator>
      <dc:date>2021-08-30T01:40:37Z</dc:date>
    </item>
  </channel>
</rss>

