<?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>thread Re: Refund payments with &amp;quot;CVV_NOT_CHECKED&amp;quot; &amp;amp; &amp;quot;AVS_REJECTED&amp;quot; in Archived Discussions (Read Only)</title>
    <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253468#M96839</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/220240"&gt;@Knowtifyd&lt;/a&gt;! I'm definitely not an API expert, so I looped one in. Here's what I've got for you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the card is rejected but has enough information it's possible that the customer sees the charge on their card statement. However, if it's really a failure, the customer&amp;nbsp;will not actually be charged (the money should be on "hold" but shouldn't actually be taken out). It sounds like maybe we're&amp;nbsp;talking about two different issues here...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;If the&amp;nbsp;&lt;STRONG&gt;CreatePayment&lt;/STRONG&gt;&amp;nbsp;endpoint returns an error, the customer is&amp;nbsp;&lt;EM&gt;not&lt;/EM&gt;&amp;nbsp;being charged.&lt;/LI&gt;
&lt;LI&gt;If the&amp;nbsp;&lt;STRONG&gt;CreatePayment&lt;/STRONG&gt;&amp;nbsp;succeeds, but also has&amp;nbsp;&lt;STRONG&gt;AVS_REJECTED&lt;/STRONG&gt;&amp;nbsp;somehow, then it's up to you if they want to proceed. If you want to handle this more on your side, you can use&amp;nbsp;&lt;STRONG&gt;autocomplete: false&lt;/STRONG&gt;&amp;nbsp;so you can see if it was rejected or not, and then make a decision about whether or not to complete it (calling&amp;nbsp;&lt;A href="https://developer.squareup.com/reference/square/payments-api/complete-payment" target="_blank" rel="noopener"&gt;CompletePayment&lt;/A&gt;) or canceling it (calling&amp;nbsp;&lt;A href="https://developer.squareup.com/reference/square/payments-api/cancel-payment" target="_blank" rel="noopener"&gt;CancelPayment&lt;/A&gt;).&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hopefully this makes sense!&lt;/P&gt;</description>
    <pubDate>Thu, 08 Apr 2021 23:56:32 GMT</pubDate>
    <dc:creator>nika</dc:creator>
    <dc:date>2021-04-08T23:56:32Z</dc:date>
    <item>
      <title>Refund payments with "CVV_NOT_CHECKED" &amp; "AVS_REJECTED"</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/252904#M96838</link>
      <description>&lt;P&gt;Hi Square community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been getting customers reach out regarding multiple charges being made while trying to purchase items online.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:&lt;/P&gt;
&lt;P&gt;1. I was originally using the Single-element payment form (since 06-01-2020) but I switched my client side application to use the Multi-element payment form starting on 03-03-2021 so that customers have the option to pay with digital wallets. This is when the error I describe below started happening.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. The API version is 2021-02-26. payments are processed on the server using C# Nuget package Square9.0.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Continuing: After investigating the root cause I've seen that the following happens.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Customer enters card information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Taps "Pay Now."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Card is rejected.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Customer knows their card has funds and something must have bugged out so they try again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;5. Customer repeats steps 2 - 4 after card is rejected.&lt;/P&gt;
&lt;P&gt;(Investigation determined rejection occurred due to&amp;nbsp;"CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;6.&amp;nbsp;Customer repeats steps 2 - 4 after card is rejected.&lt;/P&gt;
&lt;P&gt;(Investigation determined rejection occurred due to&amp;nbsp;"CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;7. Customer tries one and final time - this time the card is validated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've seen this pattern happen a lot since using the Multi-element payment form and what's even less understandable is why customers are experiencing "CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED" the first couple times they attempt to pay online but then the 3rd time their card is approved. The end result is a customer is charged a total of 3 times (based on scenario described).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Question1: Has anyone experienced this issue before and what did you learn?&lt;/P&gt;
&lt;P&gt;Question2: Should I accept payments with "CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED"?&lt;/P&gt;
&lt;P&gt;Question3: Should I refund payments with "CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:&lt;/P&gt;
&lt;P&gt;I understand "CVV_NOT_CHECKED" &amp;amp; "AVS_REJECTED" can result in fraud and chargebacks.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 16:20:44 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/252904#M96838</guid>
      <dc:creator>Knowtifyd</dc:creator>
      <dc:date>2021-03-10T16:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Refund payments with "CVV_NOT_CHECKED" &amp; "AVS_REJECTED"</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253468#M96839</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/220240"&gt;@Knowtifyd&lt;/a&gt;! I'm definitely not an API expert, so I looped one in. Here's what I've got for you:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the card is rejected but has enough information it's possible that the customer sees the charge on their card statement. However, if it's really a failure, the customer&amp;nbsp;will not actually be charged (the money should be on "hold" but shouldn't actually be taken out). It sounds like maybe we're&amp;nbsp;talking about two different issues here...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;If the&amp;nbsp;&lt;STRONG&gt;CreatePayment&lt;/STRONG&gt;&amp;nbsp;endpoint returns an error, the customer is&amp;nbsp;&lt;EM&gt;not&lt;/EM&gt;&amp;nbsp;being charged.&lt;/LI&gt;
&lt;LI&gt;If the&amp;nbsp;&lt;STRONG&gt;CreatePayment&lt;/STRONG&gt;&amp;nbsp;succeeds, but also has&amp;nbsp;&lt;STRONG&gt;AVS_REJECTED&lt;/STRONG&gt;&amp;nbsp;somehow, then it's up to you if they want to proceed. If you want to handle this more on your side, you can use&amp;nbsp;&lt;STRONG&gt;autocomplete: false&lt;/STRONG&gt;&amp;nbsp;so you can see if it was rejected or not, and then make a decision about whether or not to complete it (calling&amp;nbsp;&lt;A href="https://developer.squareup.com/reference/square/payments-api/complete-payment" target="_blank" rel="noopener"&gt;CompletePayment&lt;/A&gt;) or canceling it (calling&amp;nbsp;&lt;A href="https://developer.squareup.com/reference/square/payments-api/cancel-payment" target="_blank" rel="noopener"&gt;CancelPayment&lt;/A&gt;).&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hopefully this makes sense!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 23:56:32 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253468#M96839</guid>
      <dc:creator>nika</dc:creator>
      <dc:date>2021-04-08T23:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Refund payments with "CVV_NOT_CHECKED" &amp; "AVS_REJECTED"</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253471#M96840</link>
      <description>&lt;P&gt;Nika_s,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You've suggested an excellent solution regarding how to proceed after successfully calling CreatePayment yet somehow returns&amp;nbsp;&lt;STRONG&gt;AVS_REJECTED.&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 21:30:51 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253471#M96840</guid>
      <dc:creator>Knowtifyd</dc:creator>
      <dc:date>2021-03-11T21:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Refund payments with "CVV_NOT_CHECKED" &amp; "AVS_REJECTED"</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253476#M96841</link>
      <description>&lt;P&gt;All the credit goes to our API team! But I'm happy I could help relay the message.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt; &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/220240"&gt;@Knowtifyd&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 21:39:53 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Refund-payments-with-quot-CVV-NOT-CHECKED-quot-amp-quot-AVS/m-p/253476#M96841</guid>
      <dc:creator>nika</dc:creator>
      <dc:date>2021-03-11T21:39:53Z</dc:date>
    </item>
  </channel>
</rss>

