<?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: Customer ID field ID in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/67506#M40901</link>
    <description>&lt;P&gt;I want to do the same thing. Gravity Forms gives this example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;add_filter( 'gform_authorizenet_transaction_pre_capture', 'add_custom_field', 10, 5 );&lt;BR /&gt;function add_custom_field( $transaction, $form_data, $config, $form, $entry ) {&lt;BR /&gt;if ( $form['id'] == 1 ) {&lt;BR /&gt;$value = rgpost( 'input_6');&lt;BR /&gt;$transaction-&amp;gt;setCustomField( 'Patient_Account_Number', $value );&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return $transaction;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will this pass the patient account number to Authorize?&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2019 20:54:34 GMT</pubDate>
    <dc:creator>flyingpebble</dc:creator>
    <dc:date>2019-04-24T20:54:34Z</dc:date>
    <item>
      <title>Customer ID field ID</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/61430#M35880</link>
      <description>&lt;P&gt;Hi - My client needs to send a customer ID to Authorize.net via a custom form.&amp;nbsp; (I'm using gravity forms/wordpress - so the code below is the hook I needed to add to my functions.php in order to pass a new field input to Auth.net.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe I just need to replace "your_field_name" with the actual id of the Customer ID field in authorize.&amp;nbsp; Any clues where I'd find this or does anyone know?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;add_filter( 'gform_authorizenet_transaction_pre_capture', 'add_custom_field', 10, 5 );
function add_custom_field( $transaction, $form_data, $config, $form, $entry ) {
    if ( $form['id'] == 9 ) {
        $value = rgpost( 'input_9');
        $transaction-&amp;gt;setCustomField( '&lt;SPAN&gt;your_field_name&lt;/SPAN&gt;', $value );
    }
 
    return $transaction;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 21:32:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/61430#M35880</guid>
      <dc:creator>staceyzav</dc:creator>
      <dc:date>2018-01-30T21:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Customer ID field ID</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/62040#M36424</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The field name is cust_id, so in this case you would use:&lt;/P&gt;&lt;PRE&gt;$transaction-&amp;gt;cust_id = $value;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 19:33:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/62040#M36424</guid>
      <dc:creator>zestsms</dc:creator>
      <dc:date>2018-03-08T19:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Customer ID field ID</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/67506#M40901</link>
      <description>&lt;P&gt;I want to do the same thing. Gravity Forms gives this example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;add_filter( 'gform_authorizenet_transaction_pre_capture', 'add_custom_field', 10, 5 );&lt;BR /&gt;function add_custom_field( $transaction, $form_data, $config, $form, $entry ) {&lt;BR /&gt;if ( $form['id'] == 1 ) {&lt;BR /&gt;$value = rgpost( 'input_6');&lt;BR /&gt;$transaction-&amp;gt;setCustomField( 'Patient_Account_Number', $value );&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return $transaction;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will this pass the patient account number to Authorize?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 20:54:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/67506#M40901</guid>
      <dc:creator>flyingpebble</dc:creator>
      <dc:date>2019-04-24T20:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Customer ID field ID</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/67507#M40902</link>
      <description>&lt;P&gt;I want to do the same thing. Gravity Forms gives this example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;add_filter( 'gform_authorizenet_transaction_pre_capture', 'add_custom_field', 10, 5 );&lt;BR /&gt;function add_custom_field( $transaction, $form_data, $config, $form, $entry ) {&lt;BR /&gt;if ( $form['id'] == 1 ) {&lt;BR /&gt;$value = rgpost( 'input_6');&lt;BR /&gt;$transaction-&amp;gt;setCustomField( 'Patient_Account_Number', $value );&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return $transaction;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will this pass the patient account number to Authorize?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 20:56:03 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Customer-ID-field-ID/m-p/67507#M40902</guid>
      <dc:creator>flyingpebble</dc:creator>
      <dc:date>2019-04-24T20:56:03Z</dc:date>
    </item>
  </channel>
</rss>

