<?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: ANET Hosted Form PaymentProfile cannot be sent with billing data. in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/64337#M38252</link>
    <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im having the same issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im on sandbox&amp;nbsp;Environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my configuration for get the token&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; settingType[] settings = new settingType[7];

            settings[0] = new settingType();
            settings[0].settingName = settingNameEnum.hostedPaymentButtonOptions.ToString();
            settings[0].settingValue = "{\"text\": \"Pay\"}";

            settings[1] = new settingType();
            settings[1].settingName = settingNameEnum.hostedPaymentOrderOptions.ToString();
            settings[1].settingValue = "{\"show\": true}";

            settings[2] = new settingType();
            settings[2].settingName = settingNameEnum.hostedPaymentPaymentOptions.ToString();
            settings[2].settingValue = "{\"cardCodeRequired\": false, \"showCreditCard\": true, \"showBankAccount\": false}";

            //hostedPaymentIFrameCommunicatorUrl
            settings[3] = new settingType();
            settings[3].settingName = settingNameEnum.hostedPaymentIFrameCommunicatorUrl.ToString();
            settings[3].settingValue = "{\"url\": \"https://localhost:44389/#/IFrameCommunicator\"}";

            //hostedPaymentReturnOptions
            settings[4] = new settingType();
            settings[4].settingName = settingNameEnum.hostedPaymentReturnOptions.ToString();
            settings[4].settingValue = "{\"showReceipt\": false, \"cancelUrl\": \"https://localhost:44389/#/IFrameCommunicator#action=cancel\", \"cancelUrlText\": \"Cancel\"}";

            settings[5] = new settingType();
            settings[5].settingName = settingNameEnum.hostedPaymentCustomerOptions.ToString();
            settings[5].settingValue = "{\"showEmail\": false, \"requiredEmail\": false, \"addPaymentProfile\": true}";

            settings[6] = new settingType();
            settings[6].settingName = settingNameEnum.hostedPaymentBillingAddressOptions.ToString();
            settings[6].settingValue = "{\"show\": false, \"required\": false}"&lt;/PRE&gt;&lt;P&gt;And this is how Im creating the user profile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; Console.WriteLine("Create Customer Profile Sample");

            customerProfileType customerProfile = new customerProfileType();
            customerProfile.merchantCustomerId = "Test CustomerID";
            customerProfile.email = email;

            var request = new createCustomerProfileRequest { profile = customerProfile, validationMode = validationModeEnum.none };

            // instantiate the controller that will call the service
            var controller = new createCustomerProfileController(request);
            controller.Execute();

            // get the response from the service (errors contained if any)
            createCustomerProfileResponse response = controller.GetApiResponse();

            // validate response 
            if (response != null)
            {
                if (response.messages.resultCode == messageTypeEnum.Ok)
                {
                    if (response.messages.message != null)
                    {
                        Console.WriteLine("Success!");
                        Console.WriteLine("Customer Profile ID: " + response.customerProfileId);
                    }
                }
                else
                {
                    Console.WriteLine("Customer Profile Creation Failed.");
                    Console.WriteLine("Error Code: " + response.messages.message[0].code);
                    Console.WriteLine("Error message: " + response.messages.message[0].text);
                }
            }
            else
            {
                if (controller.GetErrorResponse().messages.message.Length &amp;gt; 0)
                {
                    Console.WriteLine("Customer Profile Creation Failed.");
                    Console.WriteLine("Error Code: " + response.messages.message[0].code);
                    Console.WriteLine("Error message: " + response.messages.message[0].text);
                }
                else
                {
                    Console.WriteLine("Null Response.");
                }
            }&lt;/PRE&gt;&lt;P&gt;Not sure what Im doing wrong. I get the checkbox for save the cc info but on the next time I want to make a payment with that same user I get this error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.developer.cybersource.com/t5/image/serverpage/image-id/473iABBD66F0A868BA1C/image-size/medium?v=1.0&amp;amp;px=-1" border="0" alt="payerror.JPG" title="payerror.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one update or tell me what is wrong? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Aug 2018 17:20:14 GMT</pubDate>
    <dc:creator>mtarantooms01</dc:creator>
    <dc:date>2018-08-30T17:20:14Z</dc:date>
    <item>
      <title>ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61148#M35640</link>
      <description>&lt;P&gt;Using HOSTED PAYMENT FORM against the Production's environment we're receiving the following exception:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PaymentProfile cannot be sent with billing data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was working without hiccups against the sandbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which could be the source of the issue.&amp;nbsp; We're seeing clearly that once presented the hosted form shows the available payment methods under the passed customer's profile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help that can be provided,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 00:01:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61148#M35640</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-10T00:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61161#M35652</link>
      <description>&lt;P&gt;Any ideas what could be wrong here ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 16:08:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61161#M35652</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-10T16:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61162#M35653</link>
      <description>&lt;P&gt;I was able to figure out that if I include the setting:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;settingNameEnum.hostedPaymentBillingAddressOptions.ToString() in show = true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and a profile has been provided then that error raises.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now the exception thrown by the API it's not clear at all about the source of the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 16:28:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61162#M35653</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-10T16:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61171#M35661</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22779"&gt;@ggramajo&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The team is aware of this issue and will be fixing it in the upcoming release .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For now as a workaround please pass&amp;nbsp;&lt;/P&gt;
&lt;P&gt;settingNameEnum.hostedPaymentBillingAddressOptions.ToString() in show =&amp;nbsp;false&amp;nbsp; in the settings .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 19:31:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61171#M35661</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-01-10T19:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61172#M35662</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I imagine that you guys are aware that if I try to add a new card to the passed profile under those conditions it's going to return an AVS Mismatch exception.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 20:20:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61172#M35662</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-10T20:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61176#M35666</link>
      <description>&lt;P&gt;Can you provide more details on this use case ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It should be able to add a new card in the customer profile without passing BillTO .&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 22:45:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61176#M35666</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-01-10T22:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61192#M35682</link>
      <description>&lt;P&gt;Hi anuragg:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it's really simple to reproduce if you pass the setting in conjunction with a profile id:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;settings[4] = new settingType();&lt;BR /&gt;settings[4].settingName = settingNameEnum.hostedPaymentBillingAddressOptions.ToString();&lt;BR /&gt;settings[4].settingValue = "{\"show\": true}";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and you try to add a payment type (new cc) then the error is sourced in an AVS mismatch while processing the data on the credit card holder's information:&amp;nbsp; address, city, etc.&amp;nbsp; We confimed this with different credit cards for which we're 100% sure the right information is provided and it's always the same outcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 16:33:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61192#M35682</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-11T16:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61194#M35684</link>
      <description>&lt;P&gt;Also anuragg:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you guys provide an ETA of when the problem is going to be resolved ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabe.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 17:19:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61194#M35684</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-11T17:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61342#M35803</link>
      <description>&lt;P&gt;Any updates to the questions in here ?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 17:02:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61342#M35803</guid>
      <dc:creator>ggramajo</dc:creator>
      <dc:date>2018-01-24T17:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61679#M36092</link>
      <description>&lt;P&gt;We just experienced this bug as well with a customer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any updates on the fix?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:09:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61679#M36092</guid>
      <dc:creator>jster1324</dc:creator>
      <dc:date>2018-02-13T17:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61684#M36096</link>
      <description>&lt;P&gt;I posted about the same issue in this thread:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/Integration-and-Testing/Accept-Hosted-Payment-Form-billing-field-entries-suddenly-being/m-p/60668/highlight/true#M35186" target="_blank"&gt;https://community.developer.authorize.net/t5/Integration-and-Testing/Accept-Hosted-Payment-Form-billing-field-entries-suddenly-being/m-p/60668/highlight/true#M35186&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still waiting for a response.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 20:52:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/61684#M36096</guid>
      <dc:creator>msupko88</dc:creator>
      <dc:date>2018-02-13T20:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62475#M36792</link>
      <description>&lt;P&gt;Mr. Anurag/Admin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Curious, If you have an update on this issue ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having a problem, where our client is able to add their ACH Bank information along with their billing infomation in "getHostedProfilePageRequest". When they are trying to make a payment using the above saved ACH Banking profile, they are seeing the following error.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;"&lt;SPAN&gt;PaymentProfile cannot be sent with billing data."&lt;BR /&gt;&lt;BR /&gt;I am passing the following setting.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;var hostedPaymentBillingAddressOptions = new settingType&lt;BR /&gt;{&lt;BR /&gt;settingName = "hostedPaymentBillingAddressOptions",&lt;BR /&gt;settingValue = "{\"show\": true, \"required\": false}"&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:23:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62475#M36792</guid>
      <dc:creator>parthireddy3108</dc:creator>
      <dc:date>2018-04-03T20:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62489#M36800</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our dev team has already resolved this issue and this problem will be gone after our next release.&lt;/P&gt;&lt;P&gt;We will try to have the next release as soon as possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, if you are sending &lt;FONT color="#3366ff"&gt;&amp;lt;getHostedPaymentPageRequest&amp;gt;&lt;/FONT&gt; with &lt;FONT color="#3366ff"&gt;&amp;lt;customerProfileId&amp;gt;&lt;/FONT&gt;, which means you want to allow the user to pay with profile, you &lt;FONT color="#ff0000"&gt;cannot send &amp;lt;billTo&amp;gt;&lt;/FONT&gt; information&lt;FONT color="#ff0000"&gt; or set "show" = true in hostedPaymentBillingAddressOptions&lt;/FONT&gt;. Otherwise, if user choose to pay with profile, "PaymentProfile cannot be sent with billing data" will show on the page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is, pay with profile currently cannot co-exist with "billing" information.&lt;/P&gt;&lt;P&gt;But, after our next release, all&amp;nbsp;the settings will be working without any problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully this helps! And thank you for your patiance and support!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Angie&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 01:43:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62489#M36800</guid>
      <dc:creator>angie</dc:creator>
      <dc:date>2018-04-04T01:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62508#M36811</link>
      <description>&lt;P&gt;angie,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea of the timing for that release?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 16:41:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62508#M36811</guid>
      <dc:creator>scottmun</dc:creator>
      <dc:date>2018-04-04T16:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62509#M36812</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23999"&gt;@scottmun&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are&amp;nbsp;targetting the release&amp;nbsp;&amp;nbsp; by early May as its bundled with other Accept Suite updates&amp;nbsp; .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will keep&amp;nbsp;the thread&amp;nbsp;&amp;nbsp;posted as we get near the release .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 17:22:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62509#M36812</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-04-04T17:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62519#M36819</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you. It can't come soon enough. We're trying to release, but can't without the ability to save more than 1 payment profile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:48:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62519#M36819</guid>
      <dc:creator>scottmun</dc:creator>
      <dc:date>2018-04-04T19:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62962#M37176</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23551"&gt;@angie&lt;/a&gt; and/or &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21382"&gt;@Anurag&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's early May. Any word on the release of this fix? We also can't deploy until the issue is resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Scott (a different one)&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 16:25:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62962#M37176</guid>
      <dc:creator>scottnes1</dc:creator>
      <dc:date>2018-05-04T16:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62964#M37178</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/24124"&gt;@scottnes1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We got some secruity/env road bumps along the&amp;nbsp;way&amp;nbsp; for the release and right now its looks to be end of May/start of June .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rest assured this is top priority from the team release it earliest&amp;nbsp;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if any questions or reach out at developer_feedback@authorize.net&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Anurag&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 20:02:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62964#M37178</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-05-04T20:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62966#M37180</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21382"&gt;@Anurag&lt;/a&gt;. I understand, but it's disappointing.&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 19:35:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/62966#M37180</guid>
      <dc:creator>scottnes1</dc:creator>
      <dc:date>2018-05-04T19:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: ANET Hosted Form PaymentProfile cannot be sent with billing data.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/63248#M37419</link>
      <description>&lt;P&gt;Hi again &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21382"&gt;@Anurag&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any update on the release date?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Scott (the second one)&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 17:32:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ANET-Hosted-Form-PaymentProfile-cannot-be-sent-with-billing-data/m-p/63248#M37419</guid>
      <dc:creator>scottnes1</dc:creator>
      <dc:date>2018-05-31T17:32:01Z</dc:date>
    </item>
  </channel>
</rss>

