<?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: trialOccurrences and trialAmount update using ARBUpdateSubscriptionRequest in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88287#M55619</link>
    <description>&lt;P&gt;&lt;SPAN&gt;To update &lt;/SPAN&gt;trialOccurrences&lt;SPAN&gt; and &lt;/SPAN&gt;trialAmount&lt;SPAN&gt; in a subscription using the &lt;/SPAN&gt;ARBUpdateSubscriptionRequest&lt;SPAN&gt; with Authorize.Net, you can send a JSON request including these fields under the &lt;/SPAN&gt;paymentSchedule&lt;SPAN&gt; section of the subscription. Make sure to include your merchant authentication details, subscription ID, and the new values for &lt;/SPAN&gt;trialOccurrences&lt;SPAN&gt; and &lt;/SPAN&gt;trialAmount&lt;SPAN&gt;. For exact field names and format, refer to Authorize.Net's API documentation.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Dec 2023 11:57:15 GMT</pubDate>
    <dc:creator>AreejAnjum</dc:creator>
    <dc:date>2023-12-11T11:57:15Z</dc:date>
    <item>
      <title>trialOccurrences and trialAmount update using ARBUpdateSubscriptionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88272#M55615</link>
      <description>&lt;P&gt;Hello team can we update trialOccurrences and trialAmount update subscription using ARBUpdateSubscriptionRequest, if so please suggest valid json format.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 10:15:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88272#M55615</guid>
      <dc:creator>navya</dc:creator>
      <dc:date>2023-12-11T10:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: trialOccurrences and trialAmount update using ARBUpdateSubscriptionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88287#M55619</link>
      <description>&lt;P&gt;&lt;SPAN&gt;To update &lt;/SPAN&gt;trialOccurrences&lt;SPAN&gt; and &lt;/SPAN&gt;trialAmount&lt;SPAN&gt; in a subscription using the &lt;/SPAN&gt;ARBUpdateSubscriptionRequest&lt;SPAN&gt; with Authorize.Net, you can send a JSON request including these fields under the &lt;/SPAN&gt;paymentSchedule&lt;SPAN&gt; section of the subscription. Make sure to include your merchant authentication details, subscription ID, and the new values for &lt;/SPAN&gt;trialOccurrences&lt;SPAN&gt; and &lt;/SPAN&gt;trialAmount&lt;SPAN&gt;. For exact field names and format, refer to Authorize.Net's API documentation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 11:57:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88287#M55619</guid>
      <dc:creator>AreejAnjum</dc:creator>
      <dc:date>2023-12-11T11:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: trialOccurrences and trialAmount update using ARBUpdateSubscriptionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88288#M55620</link>
      <description>&lt;P&gt;Thanks For your response AreejAnjum i have tried it but am getting error -Your payment could not be processed because of error E00003: The element 'subscription' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'paymentSchedule' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'order, customer, billTo, shipTo, profile' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 12:04:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88288#M55620</guid>
      <dc:creator>navya</dc:creator>
      <dc:date>2023-12-11T12:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: trialOccurrences and trialAmount update using ARBUpdateSubscriptionRequest</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88331#M55651</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/66458"&gt;@navya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the json request/response example of success updating trial data:&lt;BR /&gt;&lt;BR /&gt;request&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
	"ARBUpdateSubscriptionRequest": {
		"merchantAuthentication": {
			"name": "${your_api_login_id}",
			"transactionKey": "${you_transaction_key}"
		},
		"refId": "123456",
		"subscriptionId": "9052227",
		"subscription": {
			"paymentSchedule": {
				"trialOccurrences": 1
			},
			"trialAmount": 1.00
		}
	}
}&lt;/LI-CODE&gt;&lt;P&gt;response:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
	"profile": {
		"customerProfileId": "515619158",
		"customerPaymentProfileId": "523840874"
	},
	"refId": "123456",
	"messages": {
		"resultCode": "Ok",
		"message": [
			{
				"code": "I00001",
				"text": "Successful."
			}
		]
	}
}&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 14 Dec 2023 21:30:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/trialOccurrences-and-trialAmount-update-using/m-p/88331#M55651</guid>
      <dc:creator>sera_nikulin</dc:creator>
      <dc:date>2023-12-14T21:30:58Z</dc:date>
    </item>
  </channel>
</rss>

