<?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: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64325#M38243</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25198"&gt;@mtarantooms01&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check the section&amp;nbsp;&amp;nbsp;PRESENTING STORED CREDIT CARDS FOR PAYMENT and the below setting&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="table table-condensed"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;hostedPaymentCustomerOptions&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;CODE&gt;{"showEmail": false, "requiredEmail": false, "addPaymentProfile": true}&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;CODE&gt;showEmail&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;requiredEmail&lt;/CODE&gt;determine whether the input field for the customer's email address will be shown and/or required on the form. Both parameters are false by default.&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;addPaymentProfile&lt;/CODE&gt;specifies whether to allow the customer to use the payment form to add a new form of payment to their customer profile. Applies when a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;customerProfileId&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;has been sent with the token request. The default is true.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/features/accept_hosted.html" 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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 29 Aug 2018 05:45:27 GMT</pubDate>
    <dc:creator>Anurag</dc:creator>
    <dc:date>2018-08-29T05:45:27Z</dc:date>
    <item>
      <title>Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64324#M38242</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im usingthe fully hosted solution on my application. I get the token and Im able to bind the Iframe with out any issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But we want to also save the credit card information of our clients. Not sure why that checkbox is not gettign displayed on the screen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how we create the token on C#:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;string ApiLoginID = ConfigurationManager.AppSettings["ApiLoginID"].ToString();
            string TransactionKey = ConfigurationManager.AppSettings["TransactionKey"].ToString();

            ApiOperationBase&amp;lt;ANetApiRequest, ANetApiResponse&amp;gt;.RunEnvironment = AuthorizeNet.Environment.SANDBOX;
            ApiOperationBase&amp;lt;ANetApiRequest, ANetApiResponse&amp;gt;.MerchantAuthentication = new merchantAuthenticationType()
            {
                name = ApiLoginID,
                ItemElementName = ItemChoiceType.transactionKey,
                Item = TransactionKey,
            };

            settingType[] settings = new settingType[5];

            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\"}";

            var billTo = new customerAddressType();
            billTo.firstName = "Name 1";

            var customer = new customerDataType();
            customer.email = "client@test.com";

            var transactionRequest = new transactionRequestType
            {
                transactionType = transactionTypeEnum.authCaptureTransaction.ToString(),    // authorize capture only
                amount = amount,
                billTo = billTo,
                customer = customer

            };

            var request = new getHostedPaymentPageRequest();
            request.transactionRequest = transactionRequest;
            request.hostedPaymentSettings = settings;

            // instantiate the controller that will call the service
            var controller = new getHostedPaymentPageController(request);
            controller.Execute();

            // get the response from the service (errors contained if any)
            var response = controller.GetApiResponse();
            string result = string.Empty;
            // validate response
            if (response != null &amp;amp;&amp;amp; response.messages.resultCode == messageTypeEnum.Ok)
            {
                result = response.token;
            }
            else if (response != null)
            {
                result = "Errror";
            }&lt;/PRE&gt;&lt;P&gt;And this is how the modal look like:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.developer.cybersource.com/t5/image/serverpage/image-id/470i7E3E6CD95743D565/image-size/medium?v=1.0&amp;amp;px=-1" border="0" alt="modal.JPG" title="modal.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one help me on this?!&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;</description>
      <pubDate>Tue, 28 Aug 2018 21:33:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64324#M38242</guid>
      <dc:creator>mtarantooms01</dc:creator>
      <dc:date>2018-08-28T21:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64325#M38243</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25198"&gt;@mtarantooms01&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check the section&amp;nbsp;&amp;nbsp;PRESENTING STORED CREDIT CARDS FOR PAYMENT and the below setting&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="table table-condensed"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;hostedPaymentCustomerOptions&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;CODE&gt;{"showEmail": false, "requiredEmail": false, "addPaymentProfile": true}&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;CODE&gt;showEmail&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;requiredEmail&lt;/CODE&gt;determine whether the input field for the customer's email address will be shown and/or required on the form. Both parameters are false by default.&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;addPaymentProfile&lt;/CODE&gt;specifies whether to allow the customer to use the payment form to add a new form of payment to their customer profile. Applies when a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;customerProfileId&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;has been sent with the token request. The default is true.&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/features/accept_hosted.html" 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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 05:45:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64325#M38243</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-08-29T05:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64326#M38244</link>
      <description>&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now Im sending the&amp;nbsp;hostedPaymentCustomerOptions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; settings[5] = new settingType();
            settings[5].settingName = settingNameEnum.hostedPaymentCustomerOptions.ToString();
            settings[5].settingValue = "{\"showEmail\": false, \"requiredEmail\": false, \"addPaymentProfile\": true}";&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But The checkbox still not appear. What I undestood is that I will need to send a&amp;nbsp;customerProfileId when Im creating the token, correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  var profile = new customerProfilePaymentType();
            profile.customerProfileId = "10";&lt;/PRE&gt;&lt;P&gt;Something like that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or I have to create the profile Id from other place?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 15:23:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64326#M38244</guid>
      <dc:creator>mtarantooms01</dc:creator>
      <dc:date>2018-08-29T15:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64357#M38268</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25198"&gt;@mtarantooms01&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need to create the customer profile by calling the below API&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Only below 3 fields are required for creating it .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="table table-condensed"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="oneBullet"&gt;merchantCustomerId&lt;/TD&gt;
&lt;TD&gt;&lt;STRONG&gt;Required.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Conditional.&lt;/STRONG&gt;&lt;BR /&gt;Merchant assigned ID for the customer.&lt;BR /&gt;&lt;BR /&gt;Required only when no values for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;description&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;email&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;are submitted.&lt;/TD&gt;
&lt;TD&gt;
&lt;DIV&gt;String, up to 20 characters.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="oneBullet"&gt;description&lt;/TD&gt;
&lt;TD&gt;&lt;STRONG&gt;Conditional.&lt;/STRONG&gt;&lt;BR /&gt;Description of the customer or customer profile.&lt;BR /&gt;&lt;BR /&gt;Required only when no values for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;merchantCustomerId&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;email&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;are submitted.&lt;/TD&gt;
&lt;TD&gt;
&lt;DIV&gt;String, up to 255 characters.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="oneBullet"&gt;email&lt;/TD&gt;
&lt;TD&gt;&lt;STRONG&gt;Conditional.&lt;/STRONG&gt;&lt;BR /&gt;Email address associated with the customer profile.&lt;BR /&gt;&lt;BR /&gt;Required when no values for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;description&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;merchantCustomerId&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;are submitted.&lt;BR /&gt;&lt;BR /&gt;Required when using a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developer.authorize.net/api/reference/features/payment_transactions.html#Payment_Processors" target="_blank"&gt;European payment processor.&lt;/A&gt;&lt;/TD&gt;
&lt;TD&gt;
&lt;DIV&gt;String, up to 255 characters.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 04 Sep 2018 04:29:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64357#M38268</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-09-04T04:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64860#M38653</link>
      <description>&lt;P&gt;We are also facing the same issue.&lt;/P&gt;&lt;P&gt;With sandbox url we are getting the checkbox "Save this Credit Card information for&amp;nbsp; the future"&lt;/P&gt;&lt;P&gt;But when we change to live authorize.net url this check box is not displaying&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 13:53:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64860#M38653</guid>
      <dc:creator>bindub</dc:creator>
      <dc:date>2018-10-24T13:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64861#M38654</link>
      <description>&lt;P&gt;We are getting this same issue&lt;/P&gt;&lt;P&gt;Just wondering whether there was a solution&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 13:59:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/64861#M38654</guid>
      <dc:creator>bindub</dc:creator>
      <dc:date>2018-10-24T13:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fully Hosted - Chekbox Save this Credit Card information for the future. Not showing</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/85480#M53767</link>
      <description>&lt;P&gt;this codebase is a nightmare. unless you HAVE a profile already created from some other means you CANNOT supply and create a profile sanely for a customer. Also what code in the world has both a "CustomerProfilePaymentType" AND "CustomerPaymentProfileType"&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 16:35:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Fully-Hosted-Chekbox-Save-this-Credit-Card-information-for-the/m-p/85480#M53767</guid>
      <dc:creator>ccennis</dc:creator>
      <dc:date>2023-01-16T16:35:27Z</dc:date>
    </item>
  </channel>
</rss>

