<?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 Use createCustomerProfileResponse for preventing duplicate accounts using same credit card in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37423#M20726</link>
    <description>&lt;P&gt;I'm investigating if CIM can support following use case: When new user is signing up for our service, check that credit card he provides is not associated with any other user account on our service.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my undestanding of documentation and some board posts it might be possible to achieve that by calling&amp;nbsp;createCustomerProfileRequest and providing only credit card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would this work?&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;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
  &amp;lt;merchantAuthentication&amp;gt;
    &amp;lt;name&amp;gt;API Login ID here&amp;lt;/name&amp;gt;
    &amp;lt;transactionKey&amp;gt;Transaction Key here&amp;lt;/transactionKey&amp;gt;
  &amp;lt;/merchantAuthentication&amp;gt;
  &amp;lt;profile&amp;gt;
    &amp;lt;paymentProfiles&amp;gt;
      &amp;lt;payment&amp;gt;
        &amp;lt;creditCard&amp;gt;
          &amp;lt;cardNumber&amp;gt;Credit card number here&amp;lt;/cardNumber&amp;gt;
        &amp;lt;/creditCard&amp;gt;
      &amp;lt;/payment&amp;gt;
    &amp;lt;/paymentProfiles&amp;gt;
  &amp;lt;/profile&amp;gt;
&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Dec 2013 15:05:59 GMT</pubDate>
    <dc:creator>mariozivic</dc:creator>
    <dc:date>2013-12-16T15:05:59Z</dc:date>
    <item>
      <title>Use createCustomerProfileResponse for preventing duplicate accounts using same credit card</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37423#M20726</link>
      <description>&lt;P&gt;I'm investigating if CIM can support following use case: When new user is signing up for our service, check that credit card he provides is not associated with any other user account on our service.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my undestanding of documentation and some board posts it might be possible to achieve that by calling&amp;nbsp;createCustomerProfileRequest and providing only credit card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would this work?&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;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
  &amp;lt;merchantAuthentication&amp;gt;
    &amp;lt;name&amp;gt;API Login ID here&amp;lt;/name&amp;gt;
    &amp;lt;transactionKey&amp;gt;Transaction Key here&amp;lt;/transactionKey&amp;gt;
  &amp;lt;/merchantAuthentication&amp;gt;
  &amp;lt;profile&amp;gt;
    &amp;lt;paymentProfiles&amp;gt;
      &amp;lt;payment&amp;gt;
        &amp;lt;creditCard&amp;gt;
          &amp;lt;cardNumber&amp;gt;Credit card number here&amp;lt;/cardNumber&amp;gt;
        &amp;lt;/creditCard&amp;gt;
      &amp;lt;/payment&amp;gt;
    &amp;lt;/paymentProfiles&amp;gt;
  &amp;lt;/profile&amp;gt;
&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2013 15:05:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37423#M20726</guid>
      <dc:creator>mariozivic</dc:creator>
      <dc:date>2013-12-16T15:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Use createCustomerProfileResponse for preventing duplicate accounts using same credit card</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37425#M20727</link>
      <description>&lt;P&gt;that and at least one of these under profile merchantCustomerId, description, or email. And they have to be unique.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are not using the hosted CIM, you could save the last 4 and a hash(not encrypt) of the full cc#. Then, you can use those for duplicate cc# check.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2013 15:16:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37425#M20727</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-12-16T15:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use createCustomerProfileResponse for preventing duplicate accounts using same credit card</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37431#M20730</link>
      <description>&lt;P&gt;If I provide merchantCustomerId, it will always be new, since I'm creating a new user. Same goes for email since we use email for user name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I store CC #, it's trivial to solve, but I'm trying to avoid storing it on our side.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2013 15:31:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Use-createCustomerProfileResponse-for-preventing-duplicate/m-p/37431#M20730</guid>
      <dc:creator>mariozivic</dc:creator>
      <dc:date>2013-12-16T15:31:22Z</dc:date>
    </item>
  </channel>
</rss>

