<?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: How to make company/business name an editable field in Accept Hosted Payment Form in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93419#M57966</link>
    <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;To make the company/business name editable in the Accept Hosted Payment Form, enable the company field by setting hosted Payment Customer Options .show Company to true in your API request configuration.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Tue, 05 Aug 2025 08:05:42 GMT</pubDate>
    <dc:creator>sameer2492</dc:creator>
    <dc:date>2025-08-05T08:05:42Z</dc:date>
    <item>
      <title>How to make company/business name an editable field in Accept Hosted Payment Form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/88540#M55792</link>
      <description>&lt;P&gt;I would like to add an editable company/business name field to my Accept Hosted Payment Form. How can I achieve this?&lt;/P&gt;
&lt;P&gt;Here is the JSON object in my getHostedPaymentPageRequest -&lt;/P&gt;
&lt;P&gt;function authUser(dono_amount, customer_type, user_email_address, user_first_name, user_last_name, user_business, user_address, user_city, user_state, user_zip, user_phone_number, show_credit_card, show_bank_account) {&lt;BR /&gt;$.when(&lt;BR /&gt;$.ajax({&lt;BR /&gt;url: "htt&lt;SPAN&gt;ps://apitest.authorize.&lt;SPAN&gt;net/xml/v1/request.api",&lt;BR /&gt;type: "POST",&lt;BR /&gt;contentType: "application/json",&lt;BR /&gt;data: JSON.stringify({&lt;BR /&gt;"getHostedPaymentPageRequest": {&lt;BR /&gt;"merchantAuthentication": {&lt;BR /&gt;"name": "[name]",&lt;BR /&gt;"transactionKey": "[key]"&lt;BR /&gt;},&lt;BR /&gt;"transactionRequest": {&lt;BR /&gt;"transactionType": "authCaptureTransaction",&lt;BR /&gt;"amount": dono_amount,&lt;BR /&gt;"profile": {&lt;BR /&gt;"customerProfileId": "[id]"&lt;BR /&gt;},&lt;BR /&gt;"customer": {&lt;BR /&gt;"type": customer_type,&lt;BR /&gt;"email": user_email_address,&lt;BR /&gt;},&lt;BR /&gt;"billTo": {&lt;BR /&gt;"firstName": user_first_name,&lt;BR /&gt;"lastName": user_last_name,&lt;BR /&gt;"company": user_business,&lt;BR /&gt;"address": user_address,&lt;BR /&gt;"city": user_city,&lt;BR /&gt;"state": user_state,&lt;BR /&gt;"zip": user_zip,&lt;BR /&gt;"country": "US",&lt;BR /&gt;"phoneNumber": user_phone_number&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;"hostedPaymentSettings": {&lt;BR /&gt;"setting": [{&lt;BR /&gt;"settingName": "hostedPaymentReturnOptions",&lt;BR /&gt;"settingValue": "{\"showReceipt\": true, \"url\": \"htt&lt;SPAN&gt;ps://mysite.&lt;SPAN&gt;com/receipt\", \"urlText\": \"Donate\", \"cancelUrl\": \"mysite.com\", \"cancelUrlText\": \"Cancel\"}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentButtonOptions",&lt;BR /&gt;"settingValue": "{\"text\": \"Donate\"}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentStyleOptions",&lt;BR /&gt;"settingValue": "{\"bgColor\": \"#41413F\"}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentPaymentOptions",&lt;BR /&gt;"settingValue": "{\"cardCodeRequired\": true, \"showCreditCard\": " + show_credit_card + ", \"showBankAccount\": " + show_bank_account + "}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentSecurityOptions",&lt;BR /&gt;"settingValue": "{\"captcha\": true}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentShippingAddressOptions",&lt;BR /&gt;"settingValue": "{\"show\": false, \"required\": false}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentBillingAddressOptions",&lt;BR /&gt;"settingValue": "{\"show\": true, \"required\": false}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentCustomerOptions",&lt;BR /&gt;"settingValue": "{\"showEmail\": true, \"requiredEmail\": true, \"addPaymentProfile\": false}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentOrderOptions",&lt;BR /&gt;"settingValue": "{\"show\": true, \"merchantName\": \"MerchantName\"}"&lt;BR /&gt;}, {&lt;BR /&gt;"settingName": "hostedPaymentIFrameCommunicatorUrl",&lt;BR /&gt;"settingValue": "{\"url\": \"}"&lt;BR /&gt;}]&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}),&lt;BR /&gt;dataType: "json",&lt;BR /&gt;success: function (response) {&lt;BR /&gt;console.log(response);&lt;BR /&gt;console.log(response.token);&lt;BR /&gt;$("#send_token input").attr("value", response.token)&lt;BR /&gt;}&lt;BR /&gt;})&lt;BR /&gt;).done(function () {&lt;BR /&gt;$("#iframe_holder").addClass("open-iframe");&lt;BR /&gt;$("#add_payment").show();&lt;BR /&gt;$("#send_token").attr({ "action": "htt&lt;SPAN&gt;ps://test.authorize.&lt;SPAN&gt;net/payment/payment", "target": "add_payment" }).submit();&lt;BR /&gt;});&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jan 2024 00:57:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/88540#M55792</guid>
      <dc:creator>dvieira</dc:creator>
      <dc:date>2024-01-06T00:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to make company/business name an editable field in Accept Hosted Payment Form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/89655#M56499</link>
      <description>&lt;DIV class=""&gt;&lt;SPAN&gt;To make the company/business name editable in Accept Hosted Payment Form, customize the form's HTML to include an input field for the company/business name. Ensure the field is correctly mapped and processed during payment submission.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&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;&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Aug 2024 06:26:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/89655#M56499</guid>
      <dc:creator>johnsen875</dc:creator>
      <dc:date>2024-08-10T06:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to make company/business name an editable field in Accept Hosted Payment Form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93419#M57966</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;To make the company/business name editable in the Accept Hosted Payment Form, enable the company field by setting hosted Payment Customer Options .show Company to true in your API request configuration.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 05 Aug 2025 08:05:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93419#M57966</guid>
      <dc:creator>sameer2492</dc:creator>
      <dc:date>2025-08-05T08:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to make company/business name an editable field in Accept Hosted Payment Form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93442#M57970</link>
      <description>&lt;P&gt;To make the company/business name an editable field in the Accept Hosted Payment Form (Authorize. Net), customize the form using the Hosted Payment Settings in the Merchant Interface. Enable and mark the “Company” field as editable in the Billing Information section. Use the API to include hosted Payment Billing Address Options with "show Company": true and "required": false.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 07:31:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93442#M57970</guid>
      <dc:creator>sameer2492</dc:creator>
      <dc:date>2025-08-07T07:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to make company/business name an editable field in Accept Hosted Payment Form</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93525#M58006</link>
      <description>&lt;P&gt;To make the company/business name editable in an Accept Hosted Payment Form, update your Authorize.Net payment form settings. In the form customization or API request parameters, set the company field as visible and editable instead of read-only. Save changes, then test the form to ensure users can enter or modify their business name.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 07:32:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-make-company-business-name-an-editable-field-in-Accept/m-p/93525#M58006</guid>
      <dc:creator>sameer2492</dc:creator>
      <dc:date>2025-08-12T07:32:54Z</dc:date>
    </item>
  </channel>
</rss>

