<?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 Creating customerprofile and paymentprofile using same nonce in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-customerprofile-and-paymentprofile-using-same-nonce/m-p/62611#M36891</link>
    <description>&lt;P&gt;I am trying to send nonce to backend and able to create customerprofile but when trying to create paymentprofile using same nonce getting the error code&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/responseCodes.html?code=E00114" target="_blank"&gt;E00114&lt;/A&gt; Invalid OTS Token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below it was mentioned that nonce can be used only once&lt;/P&gt;&lt;P&gt;&lt;A title="https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678" href="https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678" target="_self"&gt;https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please guide me how to proceed , my requiremnt is to create customerprofile and paymentprofile in the same workflow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Apr 2018 10:15:42 GMT</pubDate>
    <dc:creator>sankarnath2</dc:creator>
    <dc:date>2018-04-12T10:15:42Z</dc:date>
    <item>
      <title>Creating customerprofile and paymentprofile using same nonce</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-customerprofile-and-paymentprofile-using-same-nonce/m-p/62611#M36891</link>
      <description>&lt;P&gt;I am trying to send nonce to backend and able to create customerprofile but when trying to create paymentprofile using same nonce getting the error code&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/responseCodes.html?code=E00114" target="_blank"&gt;E00114&lt;/A&gt; Invalid OTS Token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below it was mentioned that nonce can be used only once&lt;/P&gt;&lt;P&gt;&lt;A title="https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678" href="https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678" target="_self"&gt;https://community.developer.authorize.net/t5/Integration-and-Testing/E00114-Invalid-OTS-Token-while-creating-subscription-with/td-p/60678&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please guide me how to proceed , my requiremnt is to create customerprofile and paymentprofile in the same workflow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 10:15:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-customerprofile-and-paymentprofile-using-same-nonce/m-p/62611#M36891</guid>
      <dc:creator>sankarnath2</dc:creator>
      <dc:date>2018-04-12T10:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating customerprofile and paymentprofile using same nonce</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-customerprofile-and-paymentprofile-using-same-nonce/m-p/62615#M36895</link>
      <description>&lt;P&gt;The customerProfile has a paymentProfiles collection. You should be able to populate said collection with your opaqueDataType payment profile and create both at the same time with a single call to create the customer profile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt; 
   &amp;lt;merchantAuthentication&amp;gt;
     &amp;lt;name&amp;gt;XXXXXXXXXX&amp;lt;/name&amp;gt;
     &amp;lt;transactionKey&amp;gt;XXXXXXXXXXXXXXXX&amp;lt;/transactionKey&amp;gt;
    &amp;lt;/merchantAuthentication&amp;gt;
   &amp;lt;profile&amp;gt;
     &amp;lt;merchantCustomerId&amp;gt;Merchant_Customer_ID&amp;lt;/merchantCustomerId&amp;gt;
     &amp;lt;description&amp;gt;Profile description here&amp;lt;/description&amp;gt;
     &amp;lt;email&amp;gt;customer-profile-email@here.com&amp;lt;/email&amp;gt;
     &amp;lt;paymentProfiles&amp;gt;
       &amp;lt;customerType&amp;gt;individual&amp;lt;/customerType&amp;gt;
        &amp;lt;payment&amp;gt;
          &amp;lt;creditCard&amp;gt;
            &amp;lt;cardNumber&amp;gt;4111111111111111&amp;lt;/cardNumber&amp;gt;
            &amp;lt;expirationDate&amp;gt;2020-12&amp;lt;/expirationDate&amp;gt;
          &amp;lt;/creditCard&amp;gt;
         &amp;lt;/payment&amp;gt;
      &amp;lt;/paymentProfiles&amp;gt;
    &amp;lt;/profile&amp;gt;
	&amp;lt;validationMode&amp;gt;testMode&amp;lt;/validationMode&amp;gt;
  &amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;For details, see &lt;A href="https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 13:26:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-customerprofile-and-paymentprofile-using-same-nonce/m-p/62615#M36895</guid>
      <dc:creator>jkshay</dc:creator>
      <dc:date>2018-04-12T13:26:20Z</dc:date>
    </item>
  </channel>
</rss>

