<?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 Combining One Time Payment with Recurring Payment in one transaction in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57114#M31852</link>
    <description>&lt;P&gt;I have a form which includes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;a sign up fee (one time fee)&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;a monthly fee (recurring)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;a yearly fee (recurring)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Every transaction &lt;STRONG&gt;will&lt;/STRONG&gt; include a monthly fee.&lt;/LI&gt;&lt;LI&gt;Every transaction &lt;STRONG&gt;may&lt;/STRONG&gt; (or not) include a one-time fee and/or yearly fee (depending on what the user selects).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My question is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I handle this with one request to the API? (my research suggests no thus far)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Originally I thought I could do this all through the ARB API by using the trialOccurrences + trialAmount fields to capture the first monthly fee and any one-time fee if applicable however whilst that may work for a one-time plus monthly recurring payment, if the user also selects an option that introduces a yearly charge then I'm out of luck it would seem since the "length" property can only be specified for one recurring type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any thoughts on the best strategy to employ?&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2017 23:59:56 GMT</pubDate>
    <dc:creator>bonafide2000</dc:creator>
    <dc:date>2017-03-02T23:59:56Z</dc:date>
    <item>
      <title>Combining One Time Payment with Recurring Payment in one transaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57114#M31852</link>
      <description>&lt;P&gt;I have a form which includes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;a sign up fee (one time fee)&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;a monthly fee (recurring)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;a yearly fee (recurring)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Every transaction &lt;STRONG&gt;will&lt;/STRONG&gt; include a monthly fee.&lt;/LI&gt;&lt;LI&gt;Every transaction &lt;STRONG&gt;may&lt;/STRONG&gt; (or not) include a one-time fee and/or yearly fee (depending on what the user selects).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My question is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I handle this with one request to the API? (my research suggests no thus far)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Originally I thought I could do this all through the ARB API by using the trialOccurrences + trialAmount fields to capture the first monthly fee and any one-time fee if applicable however whilst that may work for a one-time plus monthly recurring payment, if the user also selects an option that introduces a yearly charge then I'm out of luck it would seem since the "length" property can only be specified for one recurring type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any thoughts on the best strategy to employ?&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 23:59:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57114#M31852</guid>
      <dc:creator>bonafide2000</dc:creator>
      <dc:date>2017-03-02T23:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Combining One Time Payment with Recurring Payment in one transaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57115#M31853</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21312"&gt;@bonafide2000&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While you can't do it today with a single API Call, you can do it in a single set of steps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use&lt;A href="https://developer.authorize.net/api/reference/#payment-transactions-charge-a-credit-card" target="_self"&gt; createTransactionRequest&lt;/A&gt; for the sign up fee, set the createProfile flag as true. &amp;nbsp;If the transaction request is successful, it will create a customer which you'll use for the next step&lt;/LI&gt;
&lt;LI&gt;If you need to create a monthly fee, use &lt;A href="https://developer.authorize.net/api/reference/#recurring-billing-create-a-subscription-from-customer-profile" target="_self"&gt;Create a Subscription&amp;nbsp;from Customer Profile&lt;/A&gt;&amp;nbsp;from step 1&lt;/LI&gt;
&lt;LI&gt;If you need to create a yearly fee, &lt;SPAN&gt;use &lt;/SPAN&gt;&lt;A href="https://developer.authorize.net/api/reference/#recurring-billing-create-a-subscription-from-customer-profile" target="_self"&gt;Create a Subscription&amp;nbsp;from Customer Profile&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;from step 1&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;If your want to reduce PCI Scope, check into using &lt;A href="http://developer.authorize.net/api/reference/features/acceptjs.html" target="_self"&gt;Accept.js&lt;/A&gt; or &lt;A href="http://developer.authorize.net/api/reference/features/accept_hosted.html" target="_self"&gt;Accept Hosted&lt;/A&gt; for your initial payment.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You are welcome to post this as a new feature using our &lt;A href="http://community.developer.authorize.net/t5/Ideas/idb-p/ideas" target="_blank"&gt;Ideas forum&lt;/A&gt;. This will allow others to vote on and make suggestions to improve the request.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Richard&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 01:02:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57115#M31853</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-03T01:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Combining One Time Payment with Recurring Payment in one transaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57190#M31920</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your reply, I suspected this would be the case also thank you for the work flow suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have one question concerning the implementation of Accept.js; if I go down this route and issue the initial request via Accept.js to reduce PCI compliance exposure,&amp;nbsp;what property do I&amp;nbsp;assign the response data to in my server side method (I am using the PHP SDK).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I passed the data back to Authorize.net via a opaqueData/dataValue/dataDescriptor parameter using the PHP SDK?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 00:42:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57190#M31920</guid>
      <dc:creator>bonafide2000</dc:creator>
      <dc:date>2017-03-08T00:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Combining One Time Payment with Recurring Payment in one transaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57191#M31921</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21312"&gt;@bonafide2000&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Correct, the nonce is passed using opaqueData. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 01:51:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57191#M31921</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-08T01:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Combining One Time Payment with Recurring Payment in one transaction</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57192#M31922</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/7546"&gt;@RichardH&lt;/a&gt;&amp;nbsp;thank you&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 02:00:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Combining-One-Time-Payment-with-Recurring-Payment-in-one/m-p/57192#M31922</guid>
      <dc:creator>bonafide2000</dc:creator>
      <dc:date>2017-03-08T02:00:48Z</dc:date>
    </item>
  </channel>
</rss>

