<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: gform_paypal_fulfillment Parameters</title>
		<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters</link>
		<description>Gravity Support Forums Topic: gform_paypal_fulfillment Parameters</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 07:24:22 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/gform_paypal_fulfillment-parameters" rel="self" type="application/rss+xml" />

		<item>
			<title>BruceMcK on "gform_paypal_fulfillment Parameters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters#post-16109</link>
			<pubDate>Thu, 13 Jan 2011 08:38:53 +0000</pubDate>
			<dc:creator>BruceMcK</dc:creator>
			<guid isPermaLink="false">16109@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;David, just an update. I checked out gform_post_payment_status hook, and it seems to be passing empty values in its arguments as well.&#60;/p&#62;
&#60;p&#62;To get around the problem with gform_paypal_fulfillment, I tried doing a lookup of the entry in wp_rg_lead. But either the hook is triggered before wp_rg_lead is written, or MySql is slow with its write cache, because I'm reading a 'Pending' status from wp_rg_lead. However when I look at the record in myPhpAdmin, the transaction has been approved.&#60;/p&#62;
&#60;p&#62;Thanks, Bruce.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "gform_paypal_fulfillment Parameters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters#post-16076</link>
			<pubDate>Wed, 12 Jan 2011 20:14:18 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16076@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Bruce. I will do some testing on this and confirm. Thanks for reporting an issue. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BruceMcK on "gform_paypal_fulfillment Parameters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters#post-16064</link>
			<pubDate>Wed, 12 Jan 2011 16:00:28 +0000</pubDate>
			<dc:creator>BruceMcK</dc:creator>
			<guid isPermaLink="false">16064@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi David, Thanks for the info.&#60;/p&#62;
&#60;p&#62;Weird thing. To test this out I used:&#60;/p&#62;
&#60;p&#62;function paypal_payment_handler($entry, $config, $transaction_id, $amount){&#60;br /&#62;
	$message = &#34;ID=&#34;.$entry[&#34;id&#34;].&#34;, TransID=&#34;.$transaction_id.&#34;, Amount=&#34;.$amount;&#60;br /&#62;
	mail($my_email_addr, 'payment', $message);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;I get this message:&#60;/p&#62;
&#60;p&#62;ID=105, TransID=, Amount=&#60;/p&#62;
&#60;p&#62;(I.e., no values provided for the TransID or the Amount).&#60;/p&#62;
&#60;p&#62;So I looked up the entry in wp_rg_lead, and it contains the transaction ID for that entry.&#60;/p&#62;
&#60;p&#62;I guess I can lookup  wp_rg_lead to grab the values, but maybe this is a Paypal add-on 1.0.beta3 bug???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "gform_paypal_fulfillment Parameters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters#post-16042</link>
			<pubDate>Wed, 12 Jan 2011 10:31:49 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16042@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Bruce,&#60;/p&#62;
&#60;p&#62;The &#60;strong&#62;gform_paypal_fulfillment&#60;/strong&#62; hook is passed the following parameters:&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;&#60;strong&#62;$entry&#60;/strong&#62;&#60;br /&#62;
The $entry array contains all of the details from the Gravity Form submission that generated the payment that is being fulfilled.&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;$config&#60;/strong&#62;&#60;br /&#62;
The $config array contains the configuration settings of the PayPal feed (created with the GF PayPal Add-on) attached to the form this entry/payment was submitted from.&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;$transaction_id&#60;/strong&#62;&#60;br /&#62;
The $transaction_id contains the PayPal transaction ID of the fulfilled payment&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;$amount&#60;/strong&#62;&#60;br /&#62;
The $amount contains the amount of the fulfilled payment&#60;/li&#62;
&#60;/ul&#62;</description>
		</item>
		<item>
			<title>BruceMcK on "gform_paypal_fulfillment Parameters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gform_paypal_fulfillment-parameters#post-16027</link>
			<pubDate>Tue, 11 Jan 2011 22:09:25 +0000</pubDate>
			<dc:creator>BruceMcK</dc:creator>
			<guid isPermaLink="false">16027@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I know the Paypal add-on isn't finalised yet, but can you provide any information on the parameters passed to the gform_paypal_fulfillment hook?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
