<?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: getHostedPaymentPageRequest settings error E00013!! in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71759#M44219</link>
    <description>On the SVN server, ensure that the owner and group of the repository (and all subfolders) are properly set. For example, I created a repo by issuing the following from the SVN server as root: svnadmin create /path/myrepo Initially I was getting the "txn-current-lock" error from my SVN client. On the SVN server, I noticed that /path/myrepo and all of its subfolders had owner:group of root:root. To fix this, I issued the following from the SVN server: chown -R newowner:newgroup Ensure your newowner and newgroup items match the owner/group information being supplied by the SVN clients. Important to make it recursive with the -R option. This fixed the "txn-current-lock" error. Customers can fulfill their requirements easily through of &lt;A href="https://www-myaarpmedicare.com" target="_blank"&gt;https://www-myaarpmedicare.com&lt;/A&gt; portal</description>
    <pubDate>Wed, 29 Apr 2020 06:47:58 GMT</pubDate>
    <dc:creator>unitedhealth</dc:creator>
    <dc:date>2020-04-29T06:47:58Z</dc:date>
    <item>
      <title>getHostedPaymentPageRequest settings error E00013!!</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/70733#M43468</link>
      <description>&lt;P&gt;I received an error when I try to send&amp;nbsp;getHostedPaymentPageRequest.&lt;/P&gt;&lt;P&gt;Based on&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/features/accept_hosted.html#Overview" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.authorize.net/api/reference/features/accept_hosted.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Request:&lt;/P&gt;&lt;PRE&gt;{
  "getHostedPaymentPageRequest": {
    "merchantAuthentication": {
      "name": "xxxx",
      "transactionKey": "xxxx"
    },
    "transactionRequest": {
      "transactionType": "authCaptureTransaction",
      "amount": "1.00",
      "profile": {
        "customerProfileId": "xxx"
      }
     
    },
    "hostedPaymentSettings": {
      "setting": [{
        "settingName": "hostedPaymentPaymentOptions",
        "settingValue": "{\"customerProfileId\": true}"
      }]
    }
  }
}&lt;/PRE&gt;&lt;P&gt;Response:&lt;/P&gt;&lt;PRE&gt;{
    "messages": {
        "resultCode": "Error",
        "message": [
            {
                "code": "E00013",
                "text": "Failed to add Option hostedPaymentPaymentOptions \r\n                        Property 'customerProfileId' has not been defined and the schema does not allow additional properties. Line 1, position 21."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It looks like a customerProfileId is not supported in&amp;nbsp;hostedPaymentPaymentOptions. Any ideas?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 09:34:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/70733#M43468</guid>
      <dc:creator>jacobwilliams10</dc:creator>
      <dc:date>2020-02-21T09:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: getHostedPaymentPageRequest settings error E00013!!</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71759#M44219</link>
      <description>On the SVN server, ensure that the owner and group of the repository (and all subfolders) are properly set. For example, I created a repo by issuing the following from the SVN server as root: svnadmin create /path/myrepo Initially I was getting the "txn-current-lock" error from my SVN client. On the SVN server, I noticed that /path/myrepo and all of its subfolders had owner:group of root:root. To fix this, I issued the following from the SVN server: chown -R newowner:newgroup Ensure your newowner and newgroup items match the owner/group information being supplied by the SVN clients. Important to make it recursive with the -R option. This fixed the "txn-current-lock" error. Customers can fulfill their requirements easily through of &lt;A href="https://www-myaarpmedicare.com" target="_blank"&gt;https://www-myaarpmedicare.com&lt;/A&gt; portal</description>
      <pubDate>Wed, 29 Apr 2020 06:47:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71759#M44219</guid>
      <dc:creator>unitedhealth</dc:creator>
      <dc:date>2020-04-29T06:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: getHostedPaymentPageRequest settings error E00013!!</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71858#M44292</link>
      <description>&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;First define the orderType the exact same way you did in your function, and assign it to a variable. Then instead of a custom function to create the transactionRequestType you would have a variable that serves the same purposeSo you would have something like&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var order = new orderType() { invoiceNumber = paymentOrderId.ToString(), description = paymentDescription }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var transactionRequest = new transactionRequestType&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;transactionType = transactionTypeEnum.authCaptureTransaction.ToString(),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;amount = amount&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;order = order&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;iosman&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 19:41:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71858#M44292</guid>
      <dc:creator>iosman002</dc:creator>
      <dc:date>2020-05-07T19:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: getHostedPaymentPageRequest settings error E00013!!</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71880#M44312</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/37967"&gt;@iosman002&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;First define the orderType the exact same way you did in your function, and assign it to a variable. Then instead of a custom function to create the transactionRequestType you would have a variable that serves the same purposeSo you would have something like&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var order = new orderType() { invoiceNumber = paymentOrderId.ToString(), description = paymentDescription }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var transactionRequest = new transactionRequestType&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;transactionType =&amp;nbsp;&lt;A href="https://fmovies.buzz/" target="_blank"&gt;fmovies&lt;/A&gt;&amp;nbsp;&lt;A href="https://putlocker.tips/" target="_blank"&gt;putlocker&amp;nbsp;&lt;/A&gt;&lt;A href="https://huiledericin.co/" target="_blank"&gt;huile de ricin&lt;/A&gt; transactionTypeEnum.authCaptureTransaction.ToString(),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;amount = amount&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;order = order&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;iosman&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;thanks my issue has been fixed.&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 16:45:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/getHostedPaymentPageRequest-settings-error-E00013/m-p/71880#M44312</guid>
      <dc:creator>iosman002</dc:creator>
      <dc:date>2020-05-09T16:45:16Z</dc:date>
    </item>
  </channel>
</rss>

