<?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: Full billing address in AcceptUI integration in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/85442#M53738</link>
    <description>&lt;P&gt;I would imagine this would void the&amp;nbsp;&lt;SPAN&gt;PCI-DSS SAQ A&amp;nbsp;compliance that using AcceptUI modal affords.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2023 17:05:27 GMT</pubDate>
    <dc:creator>vinays84</dc:creator>
    <dc:date>2023-01-11T17:05:27Z</dc:date>
    <item>
      <title>Full billing address in AcceptUI integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/61497#M35934</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;read&amp;nbsp;this manual &lt;A href="https://developer.authorize.net/api/reference/features/acceptjs.html" target="_blank"&gt;https://developer.authorize.net/api/reference/features/acceptjs.html&lt;/A&gt; and trying to implement AcceptUI.js&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It opens such popup:&amp;nbsp;&lt;A href="https://cl.ly/19171D3g012d" target="_blank"&gt;https://cl.ly/19171D3g012d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The button opening it contains "data-billingAddressOptions" allowing to enable / disable billing address in&amp;nbsp;that form:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;form id="paymentForm"&lt;BR /&gt;method="POST"&lt;BR /&gt;action="https://YourServer/PathToExistingPaymentProcessingScript"&amp;gt;&lt;BR /&gt;&amp;lt;input type="hidden" name="dataValue" id="dataValue" /&amp;gt;&lt;BR /&gt;&amp;lt;input type="hidden" name="dataDescriptor" id="dataDescriptor" /&amp;gt;&lt;BR /&gt;&amp;lt;button type="button"&lt;BR /&gt;class="AcceptUI"&lt;BR /&gt;data-billingAddressOptions='{"show":true, "required":false}'&lt;BR /&gt;data-apiLoginID=".."&lt;BR /&gt;data-clientKey=".."&lt;BR /&gt;data-acceptUIFormBtnTxt="Submit"&lt;BR /&gt;data-acceptUIFormHeaderTxt="Card Information"&lt;BR /&gt;data-responseHandler="responseHandler"&amp;gt;Pay&lt;BR /&gt;&amp;lt;/button&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But "billing address"&amp;nbsp; means there just 3 fields - First Name / Last Name and Zip Code. But I need full address.. Is it possible to retreive full billing address? With address, city, etc..&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 13:18:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/61497#M35934</guid>
      <dc:creator>shabalin</dc:creator>
      <dc:date>2018-02-03T13:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Full billing address in AcceptUI integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/75387#M47000</link>
      <description>&lt;P&gt;So the AVS can work only with ZIP postal code in case of the AcceptUI.js form?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 22:09:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/75387#M47000</guid>
      <dc:creator>Scandal89</dc:creator>
      <dc:date>2021-03-17T22:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Full billing address in AcceptUI integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/77010#M48181</link>
      <description>&lt;P&gt;I thought this was the case, however I created a workaround to capture full billing data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Set 'data-billingAddressOptions' to show = false, required = false in AcceptUI config&lt;/P&gt;&lt;P&gt;- Set 'data-acceptUIFormHeaderTxt' to 'Payment Information (Step 2 of 2)'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Create a similarly styled modal to the AcceptUI modal and title it 'Billing Information (Step 1 of 2)'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- In Billing Information modal, place first name, last name, address, city, state, zip fields with 'auth_billing_field' class, and a Payment Information button at the bottom that links to AcceptUI.js, &lt;STRONG&gt;disable&lt;/STRONG&gt; the button by default. Add an onclick handler to this button that closes the Billing Information modal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Use JQuery/JS to detect keyup event on 'auth_billing_field' class inputs. When the event fires, iterate the 'auth_billing_field' inputs and check for validity. If they are valid, remove the disabled property from the Payment Information button.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- When the customer clicks the Payment Information button, the Billing Information modal will close, and the AcceptUI form will present itself with Card ID, Expiry and CCV fields.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the customer submits the AcceptUI form and you receive the payment token back from Authorize.net, package the token with all of the other billing information you've collected in your Billing Information modal and create a customer payment profile via&amp;nbsp;createCustomerProfileRequest and&amp;nbsp;createCustomerShippingAddressRequest. Use your payment profile ID as the payment information for the createTransactionRequest.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This method will satisfy AVS, as the test transaction that is processed during&amp;nbsp;createCustomerProfileRequest will be checked against all of the billing information you've supplied rather than only the ZIP code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you take the time to style your modal, fields and button, it appears to be seamless to the end user.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 17:35:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/77010#M48181</guid>
      <dc:creator>ronzigato45</dc:creator>
      <dc:date>2021-06-24T17:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Full billing address in AcceptUI integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/85442#M53738</link>
      <description>&lt;P&gt;I would imagine this would void the&amp;nbsp;&lt;SPAN&gt;PCI-DSS SAQ A&amp;nbsp;compliance that using AcceptUI modal affords.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:05:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/85442#M53738</guid>
      <dc:creator>vinays84</dc:creator>
      <dc:date>2023-01-11T17:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Full billing address in AcceptUI integration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/85443#M53739</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I would imagine this would void the PCI-DSS SAQ A&amp;nbsp;compliance&amp;nbsp;the AcceptUI modal provides.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:15:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Full-billing-address-in-AcceptUI-integration/m-p/85443#M53739</guid>
      <dc:creator>vinays84</dc:creator>
      <dc:date>2023-01-11T17:15:21Z</dc:date>
    </item>
  </channel>
</rss>

