<?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: Create ARB with customerPaymentProfileId in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53829#M28908</link>
    <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I am not storing credit card number in DB. And to create subscription, i am fetching customerPaymentProfile which gives me only last 4 digits of credit card number.&lt;BR /&gt;So I am having only 4-digit of Credit card number and I am unable to create susbcription with only 4-digits.&lt;BR /&gt;Is there any way which would help me?&lt;/P&gt;</description>
    <pubDate>Tue, 23 Feb 2016 14:12:10 GMT</pubDate>
    <dc:creator>ppatidar</dc:creator>
    <dc:date>2016-02-23T14:12:10Z</dc:date>
    <item>
      <title>Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53825#M28904</link>
      <description>&lt;P&gt;I am tring to&amp;nbsp; create ARB subscription&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First i was create Customer Profile then craete&amp;nbsp; multiple Customer Payment Profile for this Customer Profile .&lt;/P&gt;&lt;P&gt;but a want to Create a Subscription (ARB) for particular Payment Profile of Customer Profile.&lt;/P&gt;&lt;P&gt;how can i create ARB Subscription for customerPaymentProfileId and customerProfileId.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help........&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below my code is like that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request = ARBCreateSubscriptionRequest.new&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription = ARBSubscriptionType.new&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.name = "&lt;FONT color="#808080"&gt;Gold&lt;/FONT&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.paymentSchedule = PaymentScheduleType.new&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.paymentSchedule.interval = PaymentScheduleType::Interval.new("1","months")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.paymentSchedule.startDate = "2016-03-01"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.paymentSchedule.totalOccurrences ='9999'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.amount = "123"&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request2 = GetCustomerProfileRequest.new&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request2.customerProfileId = "&lt;FONT color="#99CCFF"&gt;&lt;A href="https://sandbox.authorize.net/UI/themes/sandbox/CustomerProfile/ViewCustomerProfile.aspx?ProfileID=39546355" target="_blank"&gt;39546355&lt;/A&gt;&lt;/FONT&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; response2 = transaction.get_customer_profile(request2)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.customer =&amp;nbsp; CustomerDataType.new(CustomerTypeEnum::Individual,response2.profile.merchantCustomerId,email)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.billTo = NameAndAddressType.new("first_name","last_name"])&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request1 = GetCustomerPaymentProfileRequest.new&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request1.customerProfileId = "&lt;FONT color="#99CCFF"&gt;&lt;A href="https://sandbox.authorize.net/UI/themes/sandbox/CustomerProfile/ViewCustomerProfile.aspx?ProfileID=39546355" target="_blank"&gt;39546355&lt;/A&gt;&lt;/FONT&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request1.customerPaymentProfileId = "&lt;FONT color="#99CCFF"&gt;35896003&lt;/FONT&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request1.unmaskExpirationDate = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; response1 = transaction.get_customer_payment_profile(request1)&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; request.subscription.payment = response1.paymentProfile.payment&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp; &lt;/FONT&gt;&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;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp; I am getting error in above red line "E00013&amp;nbsp; Credit Card Number is invalid."&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 12:51:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53825#M28904</guid>
      <dc:creator>ppatidar</dc:creator>
      <dc:date>2016-02-23T12:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53826#M28905</link>
      <description>&lt;P&gt;follow this&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.cybersource.com/t5/Integration-and-Testing/CIM-amp-ARB-creating-subscriptions-via-CIM-API/td-p/50443" target="_blank"&gt;https://community.developer.authorize.net/t5/Integration-and-Testing/CIM-amp-ARB-creating-subscriptions-via-CIM-API/td-p/50443&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Update-2-CIM-Profiles-for-ARB-Subscriptions/ba-p/53552" target="_blank"&gt;https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Update-2-CIM-Profiles-for-ARB-Subscriptions/ba-p/53552&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 13:23:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53826#M28905</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-02-23T13:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53827#M28906</link>
      <description>&lt;P&gt;but i want to create ARB subscription by using customerProfileId with customerPaymentProfileId....&lt;/P&gt;&lt;P&gt;not only for customerProfileId.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please see my code above and understand what is my requirement&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 13:42:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53827#M28906</guid>
      <dc:creator>ppatidar</dc:creator>
      <dc:date>2016-02-23T13:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53828#M28907</link>
      <description>&lt;P&gt;What you want is not supported, that why you are getting the error.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 13:56:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53828#M28907</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-02-23T13:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53829#M28908</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I am not storing credit card number in DB. And to create subscription, i am fetching customerPaymentProfile which gives me only last 4 digits of credit card number.&lt;BR /&gt;So I am having only 4-digit of Credit card number and I am unable to create susbcription with only 4-digits.&lt;BR /&gt;Is there any way which would help me?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 14:12:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53829#M28908</guid>
      <dc:creator>ppatidar</dc:creator>
      <dc:date>2016-02-23T14:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create ARB with customerPaymentProfileId</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53831#M28910</link>
      <description>&lt;P&gt;Nope. not until they have this&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.cybersource.com/t5/The-Authorize-Net-Developer-Blog/Update-2-CIM-Profiles-for-ARB-Subscriptions/ba-p/53552" target="_blank"&gt;https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Update-2-CIM-Profiles-for-ARB-Subscriptions/ba-p/53552&lt;/A&gt;&lt;/P&gt;&lt;P&gt;finish.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or write your own scheduler to create transactions.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 14:30:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53831#M28910</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-02-23T14:30:37Z</dc:date>
    </item>
    <item>
      <title>ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53836#M28916</link>
      <description>&lt;P&gt;I want to create ARB subscription for existing credit card payment info. it is possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;payment info require at time of ARB create.&lt;/P&gt;&lt;P&gt;when i give card info like CreditCardType.new('4111111111111111','0120','123') then no problem with ARB subscription but i don't want to give new card info at the time of creation.i want to use pre-existing credit card info in ARB subscription.&lt;/P&gt;&lt;P&gt;how can give existing credit card info to ARB subscription.&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>Wed, 24 Feb 2016 04:47:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53836#M28916</guid>
      <dc:creator>ppatidar</dc:creator>
      <dc:date>2016-02-24T04:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53837#M28917</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/19694"&gt;@ppatidar﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/1353"&gt;@RaynorC1emen7﻿&lt;/a&gt;&amp;nbsp;mentioned, it is currently not possible to create a new recurring billing subscription using a payment profile. &amp;nbsp;However, an enhancement to support this capability is already in development that will be available in a future release. &amp;nbsp;I don't have a time line for completion but we'll do a blog post when completed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 05:00:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53837#M28917</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2016-02-24T05:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: ARB Subscription</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53838#M28918</link>
      <description>&lt;P&gt;Thank you.&lt;BR /&gt;Could you please tell me the rough tentative time of this future realease?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 05:43:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-ARB-with-customerPaymentProfileId/m-p/53838#M28918</guid>
      <dc:creator>ppatidar</dc:creator>
      <dc:date>2016-02-24T05:43:23Z</dc:date>
    </item>
  </channel>
</rss>

