<?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 a payment profile along with createTransactionRequest using a nonce from Accept.js in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-a-payment-profile-along-with-createTransactionRequest/m-p/71133#M43784</link>
    <description>&lt;P&gt;I am using opaqueData from Accept JS. I need to charge the card and at the same time create a customer profile. The docs reccomend this approach. the following is my request payload:&lt;/P&gt;&lt;PRE&gt;{
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "some_name",
            "transactionKey": "some_key"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "20.00",
            "payment": {
                "opaqueData": {
                  "dataDescriptor": "COMMON.ACCEPT.INAPP.PAYMENT",
                  "dataValue": "some_data"
                }
            },
            "profile": {
              "createProfile": "true"
            },
            "customer": {
                "type": "individual",
                "id": "1",
                "email": "test@test.com"
            },
            "billTo": {
                "firstName": "Ellen",
                "lastName": "Johnson",
                "company": "Souveniropolis",
                "address": "14 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            }
        }
    }
}&lt;/PRE&gt;&lt;P&gt;and what i get back is :&lt;/P&gt;&lt;PRE&gt;{"transactionResponse"=&amp;gt;
  {"responseCode"=&amp;gt;"1",
   "authCode"=&amp;gt;"000000",
   "avsResultCode"=&amp;gt;"P",
   "cvvResultCode"=&amp;gt;"",
   "cavvResultCode"=&amp;gt;"",
   "transId"=&amp;gt;"0",
   "refTransID"=&amp;gt;"",
   "transHash"=&amp;gt;"",
   "testRequest"=&amp;gt;"1",
   "accountNumber"=&amp;gt;"XXXX1111",
   "accountType"=&amp;gt;"Visa",
   "messages"=&amp;gt;[{"code"=&amp;gt;"1", "description"=&amp;gt;"This transaction has been approved."}],
   "transHashSha2"=&amp;gt;
    "76743D19EB73F0EC73C22B71FFAC00D9507821AF225901BE8B9DD7767774C304D096D1A09E1B39995B3F9A5A894C1085E4B001BF83A4CF9C574651257F40E648",
   "SupplementalDataQualificationIndicator"=&amp;gt;0},
 "profileResponse"=&amp;gt;{"messages"=&amp;gt;{"resultCode"=&amp;gt;"Error", "message"=&amp;gt;[{"code"=&amp;gt;"E00114", "text"=&amp;gt;"Invalid OTS Token."}]}},
 "refId"=&amp;gt;"",
 "messages"=&amp;gt;{"resultCode"=&amp;gt;"Ok", "message"=&amp;gt;[{"code"=&amp;gt;"I00001", "text"=&amp;gt;"Successful."}]}}&lt;/PRE&gt;&lt;P&gt;Notice the message in the profileResponse... I'm a bit perplexed...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any Ideas?&lt;/P&gt;</description>
    <pubDate>Fri, 20 Mar 2020 19:52:20 GMT</pubDate>
    <dc:creator>harryheintz</dc:creator>
    <dc:date>2020-03-20T19:52:20Z</dc:date>
    <item>
      <title>Creating a payment profile along with createTransactionRequest using a nonce from Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-a-payment-profile-along-with-createTransactionRequest/m-p/71133#M43784</link>
      <description>&lt;P&gt;I am using opaqueData from Accept JS. I need to charge the card and at the same time create a customer profile. The docs reccomend this approach. the following is my request payload:&lt;/P&gt;&lt;PRE&gt;{
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "some_name",
            "transactionKey": "some_key"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "20.00",
            "payment": {
                "opaqueData": {
                  "dataDescriptor": "COMMON.ACCEPT.INAPP.PAYMENT",
                  "dataValue": "some_data"
                }
            },
            "profile": {
              "createProfile": "true"
            },
            "customer": {
                "type": "individual",
                "id": "1",
                "email": "test@test.com"
            },
            "billTo": {
                "firstName": "Ellen",
                "lastName": "Johnson",
                "company": "Souveniropolis",
                "address": "14 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            }
        }
    }
}&lt;/PRE&gt;&lt;P&gt;and what i get back is :&lt;/P&gt;&lt;PRE&gt;{"transactionResponse"=&amp;gt;
  {"responseCode"=&amp;gt;"1",
   "authCode"=&amp;gt;"000000",
   "avsResultCode"=&amp;gt;"P",
   "cvvResultCode"=&amp;gt;"",
   "cavvResultCode"=&amp;gt;"",
   "transId"=&amp;gt;"0",
   "refTransID"=&amp;gt;"",
   "transHash"=&amp;gt;"",
   "testRequest"=&amp;gt;"1",
   "accountNumber"=&amp;gt;"XXXX1111",
   "accountType"=&amp;gt;"Visa",
   "messages"=&amp;gt;[{"code"=&amp;gt;"1", "description"=&amp;gt;"This transaction has been approved."}],
   "transHashSha2"=&amp;gt;
    "76743D19EB73F0EC73C22B71FFAC00D9507821AF225901BE8B9DD7767774C304D096D1A09E1B39995B3F9A5A894C1085E4B001BF83A4CF9C574651257F40E648",
   "SupplementalDataQualificationIndicator"=&amp;gt;0},
 "profileResponse"=&amp;gt;{"messages"=&amp;gt;{"resultCode"=&amp;gt;"Error", "message"=&amp;gt;[{"code"=&amp;gt;"E00114", "text"=&amp;gt;"Invalid OTS Token."}]}},
 "refId"=&amp;gt;"",
 "messages"=&amp;gt;{"resultCode"=&amp;gt;"Ok", "message"=&amp;gt;[{"code"=&amp;gt;"I00001", "text"=&amp;gt;"Successful."}]}}&lt;/PRE&gt;&lt;P&gt;Notice the message in the profileResponse... I'm a bit perplexed...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any Ideas?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 19:52:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-a-payment-profile-along-with-createTransactionRequest/m-p/71133#M43784</guid>
      <dc:creator>harryheintz</dc:creator>
      <dc:date>2020-03-20T19:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a payment profile along with createTransactionRequest using a nonce from Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-a-payment-profile-along-with-createTransactionRequest/m-p/72039#M44434</link>
      <description>&lt;P&gt;Thanks for the solution waiting since 2 months ,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.accessmcd.fun" target="_self"&gt;accessmcd&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 09:53:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Creating-a-payment-profile-along-with-createTransactionRequest/m-p/72039#M44434</guid>
      <dc:creator>accessmcd</dc:creator>
      <dc:date>2020-05-24T09:53:17Z</dc:date>
    </item>
  </channel>
</rss>

