<?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 Tag: 3rd-Party - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/3rd-party</link>
		<description>Gravity Support Forums Tag: 3rd-Party - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 16:37:58 +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/tags/3rd-party/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>clairee on "redirecting with POST data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/redirecting-with-post-data#post-69301</link>
			<pubDate>Fri, 03 Aug 2012 11:11:03 +0000</pubDate>
			<dc:creator>clairee</dc:creator>
			<guid isPermaLink="false">69301@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I need to create a form with an action that redirects the user to a 3rd party site with the POST method.  &#60;/p&#62;
&#60;p&#62;Gravity looks like it'll do pretty much anything.  But I'm querying this because in the support documentation it describes the confirmation redirect setting as sending a querystring:&#60;/p&#62;
&#60;p&#62;'The redirect is an advanced form confirmation that allows you to redirect the user to any URL after the form has been submitted. This option also gives you the ability to pass form field data to the redirect page via query string parameters. Using the built in query string builder you can pass form field data to the page you are redirecting to.'&#60;br /&#62;
from the bottom of this page: &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Form_Settings&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Form_Settings&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can it use POST instead?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jglenn29 on "CRM integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/crm-integration#post-42605</link>
			<pubDate>Wed, 30 Nov 2011 18:25:12 +0000</pubDate>
			<dc:creator>jglenn29</dc:creator>
			<guid isPermaLink="false">42605@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can anyone help me figure out how to integrate gravity forms with my CRM? &#60;/p&#62;
&#60;p&#62;This is the code i have from the CRM so far, but i can't figure out how to make it work with gravity forms so that the entries will automatically be entered into the CRM. any one know what to do? &#60;/p&#62;
&#60;p&#62; // Change the information below to work with your system&#60;br /&#62;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////&#60;/p&#62;
&#60;p&#62;define(SUBDOMAIN,'{nomoremortage}');	// enter your subdomain here (ie. nomoremortgage)&#60;br /&#62;
define(USERNAME, '{username}');		// change to the user name you want to use - needs to be a user that can add/edit/delete leads in the system&#60;br /&#62;
define(PASSWORD, '{password}');		// change to the password you want to use&#60;br /&#62;
define(TOKEN, '{token');	// generate a token in that admin area and get it from the email that will be sent to you and place here.&#60;/p&#62;
&#60;p&#62;/////////////////////////////////////////////////////////////////////////////////////////////////////////////////&#60;/p&#62;
&#60;p&#62;// BEGIN No More Mortgage - Form Post&#60;br /&#62;
if ($_POST) {&#60;br /&#62;
	// Set up variables for the REST service.&#60;br /&#62;
	$username = USERNAME;&#60;br /&#62;
	$password = PASSWORD;&#60;br /&#62;
	$token = TOKEN;	&#60;/p&#62;
&#60;p&#62;	$webservice_url = &#34;https://&#34; . SUBDOMAIN . &#34;.insidesales.com/do=noauth/rest/service&#34;;&#60;/p&#62;
&#60;p&#62;	// Create a connection to the REST webservice.&#60;br /&#62;
	$client = new IS($webservice_url);&#60;br /&#62;
	$logged_in = $client-&#38;gt;login($username, $password, $token);&#60;/p&#62;
&#60;p&#62;	if (!$logged_in) {&#60;br /&#62;
		error_log(&#34;{$username} using password '{$password}' and token '{$token}' was not logged in.&#34;);&#60;br /&#62;
	}&#60;br /&#62;
	// Map options To the correct Campaign Id&#60;br /&#62;
	switch ($_POST['input_16']) {&#60;br /&#62;
		case 'Radio Ad':&#60;br /&#62;
			$campaign = '5'; // Edit Campaign Id here to change the campaign that Radio Ad goes into.&#60;br /&#62;
			break;&#60;br /&#62;
		case 'Television Ad':&#60;br /&#62;
			$campaign = '7'; // Edit Campaign Id here to change the campaign that Television Ad goes into.&#60;br /&#62;
			break;&#60;br /&#62;
		case 'Online':&#60;br /&#62;
			$campaign = '14'; // Edit Campaign Id here to change the campaign that Online goes into.&#60;br /&#62;
			break;&#60;br /&#62;
		case 'Other':&#60;br /&#62;
			$campaign = '16'; // Edit Campaign Id here to change the campaign that Other goes into.&#60;br /&#62;
			break;&#60;br /&#62;
		default:&#60;br /&#62;
			$campaign = '16'; // Edit Campaign Id here to change the default campaign.&#60;br /&#62;
	}&#60;br /&#62;
	// Get Post fields&#60;br /&#62;
	$first_name			= $_POST['input_1_3'];		// API: first_name¬†			- First Name&#60;br /&#62;
	$last_name			= $_POST['input_1_6'];		// API: last_name¬†			- Last Name&#60;br /&#62;
	$email				= $_POST['input_56'];		// API: email¬†				- Email&#60;br /&#62;
	$phone				= $_POST['input_52'];		// API: phone¬†				- Phone&#60;br /&#62;
	$alt_phone			= $_POST['input_53'];		// API: customFields_400¬†	- Alternate Phone&#60;br /&#62;
	$home_value			= $_POST['input_3'];		// API: customFields_41¬†		- Estimated Home Value&#60;br /&#62;
	$first_mortgage_balance	= $_POST['input_4'];		// API: customFields_37¬†		- First Mortagage Balance&#60;br /&#62;
	$first_mortgage_type	= $_POST['input_14'];		// API: customFields_39¬†		- First Mortagage Type&#60;br /&#62;
	$mortgage_years		= $_POST['input_15'];		// API: customFields_43¬†		- Mortgage Years Remaining&#60;br /&#62;
	$second_mortgage		= $_POST['input_6'];		// API: customFields_45¬†		- Second Mortgage Balance&#60;br /&#62;
	$credit_card_debt		= $_POST['input_8'];		// API: customFields_49¬†		- Total Credit Card Debt&#60;br /&#62;
	$available_credit		= $_POST['input_16'];		// API: customFields_51¬†		- Total Available Credit&#60;br /&#62;
	$auto_loans			= $_POST['input_17'];		// API: customFields_408¬†	- Auto Loans&#60;br /&#62;
	$student_loans			= $_POST['input_20'];		// API: customFields_410¬†	- Student Loans&#60;br /&#62;
	$timeshare_loans		= $_POST['input_21'];		// API: customFields_412¬†	- Timeshare Loans&#60;br /&#62;
	$recreational_vehicles	= $_POST['input_22'];		// API: customFields_414¬†	- Recreational Vehicle Loans&#60;br /&#62;
	$other_mortgages		= $_POST['input_23'];		// API: customFields_416¬†	- Other Mortgages&#60;br /&#62;
	$personal_loans		= $_POST['input_24'];		// API: customFields_418¬†	- Personal Loans&#60;br /&#62;
	$medical_loans			= $_POST['input_25'];		// API: customFields_420¬†	- Medical Loans&#60;br /&#62;
	$tax_debts			= $_POST['input_26'];		// API: customFields_422¬†	- Tax Debts&#60;br /&#62;
	$other_debt			= $_POST['input_10'];		// API: customFields_424¬†	- Other Debt&#60;br /&#62;
	$cash_flow			= $_POST['input_11'];		// API: customFields_53¬†		- How would you describe your cash flow?&#60;br /&#62;
	$make_your_payments		= $_POST['input_27'];		// API: customFields_426¬†	- Are you able to make all of your payments?&#60;br /&#62;
	$credit_for_payments	= $_POST['input_57'];		// API: customFields_526¬†	- Are you using savings or other credit cards to make your payments?&#60;br /&#62;
	$job_title			= $_POST['input_30'];		// API: customFields_57¬†		- What is your job title?&#60;br /&#62;
	$gross_income			= $_POST['input_31'];		// API: customFields_63¬†		- What is your gross monthly income?&#60;br /&#62;
	$net_income			= $_POST['input_32'];		// API: customFields_430¬†	- What is your approximate net monthly income (take-home after taxes, etc)&#60;br /&#62;
	$often_paid			= $_POST['input_33'];		// API: customFields_65¬†		- How often are you paid?&#60;br /&#62;
	$do_you_have_a_spouse	= $_POST['input_34'];		// API: customFields_721¬†	- Do you have a spouse or significant other you live with?&#60;br /&#62;
	$spouse_first_name		= $_POST['input_35_3'];		// API: assistant_first_name	- Spouse First Name&#60;br /&#62;
	$spouse_last_name		= $_POST['input_35_6'];		// API: assistant_last_name¬†	- Spouse Last Name&#60;br /&#62;
	$spouse_job_title		= $_POST['input_36'];		// API: customFields_432¬†	- Spouse Job Title&#60;br /&#62;
	$spouse_gross_income	= $_POST['input_37'];		// API: customFields_434¬†	- Spouse Gross Monthly Income&#60;br /&#62;
	$spouse_net_income		= $_POST['input_38'];		// API: customFields_436¬†	- Spouse Net Monthly Income&#60;br /&#62;
	$spouse_often_paid		= $_POST['input_39'];		// API: customFields_438¬†	- Spouse Pay Frequency&#60;br /&#62;
	$other_monthly_income	= $_POST['input_40'];		// API: customFields_440¬†	- Any Other Monthly Income?&#60;br /&#62;
	$do_you_get_a_tax_refund	= $_POST['input_41'];		// API: customFields_67¬†		- Do you typically get a Federal Tax refund each year?es&#60;br /&#62;
	$much_your_tax_refund	= $_POST['input_42'];		// API: customFields_69¬†		- How much is your typical tax refund amount?&#60;br /&#62;
	$checking_balance		= $_POST['input_43'];		// API: customFields_442¬†	- Checking Account Balance&#60;br /&#62;
	$savings_balance		= $_POST['input_44'];		// API: customFields_444¬†	- Savings Account Balance&#60;br /&#62;
	$investment_balance		= $_POST['input_45'];		// API: customFields_446¬†	- Investment Account Balance&#60;br /&#62;
	$retirement_balance		= $_POST['input_46'];		// API: customFields_448¬†	- Retirement Account Balance&#60;br /&#62;
	$other_asset_value		= $_POST['input_47'];		// API: customFields_452¬†	- Other Assets ($ Value)&#60;br /&#62;
	$other_asset_description	= $_POST['input_48'];		// API: customFields_454¬†	- Other Assets Description&#60;br /&#62;
	$when_debt_free		= $_POST['input_49'];		// API: customFields_460¬†	- In what year do you plan to be debt free?&#60;br /&#62;
	$current_age			= $_POST['input_50'];		// API: customFields_458¬†	- What is your current age?&#60;br /&#62;
	$spouse_current_age		= $_POST['input_51'];		// API: customFields_462¬†	- What is your spouse's current age?&#60;br /&#62;
	$notes				= $_POST['input_54'];		// API: customFields_516¬†	- Notes or Comments&#60;br /&#62;
	$form				= 'PQ FORM';				// API: customFields_394¬†	- Lead Sub Type  &#60;/p&#62;
&#60;p&#62;	// Create Filters to find the lead in the CRM that was added on the first form.&#60;br /&#62;
	//$get_lead_filter = array('field'=&#38;gt;'email', 'operator'=&#38;gt;'=', 'values'=&#38;gt;array($email));&#60;br /&#62;
	//$get_deleted_filter = array('field'=&#38;gt;'deleted', 'operator'=&#38;gt;'=', 'values'=&#38;gt;array('0'));&#60;/p&#62;
&#60;p&#62;	$get_lead_by_id = array('field'=&#38;gt;'id', 'operator'=&#38;gt;'=', 'values'=&#38;gt;array($_GET['id']));&#60;/p&#62;
&#60;p&#62;	// This calls the webservice's getLeads.&#60;br /&#62;
	// The last two parameters are for paging (which page, how many results per page max)&#60;br /&#62;
	$leads = $client-&#38;gt;get_leads(array($get_lead_by_id)); // , $get_lead_filter, $get_deleted_filter));&#60;/p&#62;
&#60;p&#62;	if (count($leads) &#38;lt;= 0) {&#60;br /&#62;
		// Create a new lead&#60;br /&#62;
		$lead_info['first_name']				=	$first_name;			// First Name&#60;br /&#62;
		$lead_info['last_name']				=	$last_name;			// Last Name&#60;br /&#62;
		$lead_info['email']					=	$email;				// Email&#60;br /&#62;
		$lead_info['phone']					=	$phone;				// Phone&#60;br /&#62;
		$lead_info['customFields_400']		=	$alt_phone;			// Alternate Phone&#60;br /&#62;
		$lead_info['customFields_41']			=	$home_value;			// Estimated Home Value&#60;br /&#62;
		$lead_info['customFields_37']			=	$first_mortgage_balance;	// First Mortagage Balance&#60;br /&#62;
		$lead_info['customFields_39']			=	$first_mortgage_type;	// First Mortagage Type&#60;br /&#62;
		$lead_info['customFields_43']			=	$mortgage_years;		// Mortgage Years Remaining&#60;br /&#62;
		$lead_info['customFields_45']			=	$second_mortgage;		// Second Mortgage Balance&#60;br /&#62;
		$lead_info['customFields_49']			=	$credit_card_debt;		// Total Credit Card Debt&#60;br /&#62;
		$lead_info['customFields_51']			=	$available_credit;		// Total Available Credit&#60;br /&#62;
		$lead_info['customFields_408']		=	$auto_loans;			// Auto Loans&#60;br /&#62;
		$lead_info['customFields_410']		=	$student_loans;		// Student Loans&#60;br /&#62;
		$lead_info['customFields_412']		=	$timeshare_loans;		// Timeshare Loans&#60;br /&#62;
		$lead_info['customFields_414']		=	$recreational_vehicles;	// Recreational Vehicle Loans&#60;br /&#62;
		$lead_info['customFields_416']		=	$other_mortgages;		// Other Mortgages&#60;br /&#62;
		$lead_info['customFields_418']		=	$personal_loans;		// Personal Loans&#60;br /&#62;
		$lead_info['customFields_420']		=	$medical_loans;		// Medical Loans&#60;br /&#62;
		$lead_info['customFields_422']		=	$tax_debts;			// Tax Debts&#60;br /&#62;
		$lead_info['customFields_424']		=	$other_debt;			// Other Debt&#60;br /&#62;
		$lead_info['customFields_53']			=	$cash_flow;			// How would you describe your cash flow?&#60;br /&#62;
		$lead_info['customFields_426']		=	$make_your_payments;	// Are you able to make all of your payments?&#60;br /&#62;
		$lead_info['customFields_526']		=	$credit_for_payments;	// Are you using savings or other credit cards to make your payments?&#60;br /&#62;
		$lead_info['customFields_57']			=	$job_title;			// What is your job title?&#60;br /&#62;
		$lead_info['customFields_63']			=	$gross_income;			// What is your gross monthly income?&#60;br /&#62;
		$lead_info['customFields_430']		=	$net_income;			// What is your approximate net monthly income (take-home after taxes, etc)&#60;br /&#62;
		$lead_info['customFields_65']			=	$often_paid;			// How often are you paid?&#60;br /&#62;
		$lead_info['customFields_721']		=	$do_you_have_a_spouse;	// Do you have a spouse or significant other you live with?&#60;br /&#62;
		$lead_info['assistant_first_name']		=	$spouse_first_name;		// Spouse First Name&#60;br /&#62;
		$lead_info['assistant_last_name']		=	$spouse_last_name;		// Spouse Last Name&#60;br /&#62;
		$lead_info['customFields_432']		=	$spouse_job_title;		// Spouse Job Title&#60;br /&#62;
		$lead_info['customFields_434']		=	$spouse_gross_income;	// Spouse Gross Monthly Income&#60;br /&#62;
		$lead_info['customFields_436']		=	$spouse_net_income;		// Spouse Net Monthly Income&#60;br /&#62;
		$lead_info['customFields_438']		=	$spouse_often_paid;		// Spouse Pay Frequency&#60;br /&#62;
		$lead_info['customFields_440']		=	$other_monthly_income;	// Any Other Monthly Income?&#60;br /&#62;
		$lead_info['customFields_67']			=	$do_you_get_a_tax_refund;// Do you typically get a Federal Tax refund each year?es&#60;br /&#62;
		$lead_info['customFields_69']			=	$much_your_tax_refund;	// How much is your typical tax refund amount?&#60;br /&#62;
		$lead_info['customFields_442']		=	$checking_balance;		// Checking Account Balance&#60;br /&#62;
		$lead_info['customFields_444']		=	$savings_balance;		// Savings Account Balance&#60;br /&#62;
		$lead_info['customFields_446']		=	$investment_balance;	// Investment Account Balance&#60;br /&#62;
		$lead_info['customFields_448']		=	$retirement_balance;	// Retirement Account Balance&#60;br /&#62;
		$lead_info['customFields_452']		=	$other_asset_value;		// Other Assets ($ Value)&#60;br /&#62;
		$lead_info['customFields_454']		=	$other_asset_description;// Other Assets Description&#60;br /&#62;
		$lead_info['customFields_460']		=	$when_debt_free;		// In what year do you plan to be debt free?&#60;br /&#62;
		$lead_info['customFields_458']		=	$current_age;			// What is your current age?&#60;br /&#62;
		$lead_info['customFields_462']		=	$spouse_current_age;	// What is your spouse's current age?&#60;br /&#62;
		$lead_info['customFields_516']		=	$notes;				// Notes or Comments&#60;br /&#62;
		$lead_info['customFields_394']		=	$form;				// Lead Sub Type&#60;/p&#62;
&#60;p&#62;		// Add the lead&#60;br /&#62;
		$lead_id = $client-&#38;gt;add_lead($lead_info);&#60;br /&#62;
	} else {&#60;br /&#62;
		$lead_id = $leads[0]-&#38;gt;id;&#60;br /&#62;
		$updated_info = array();&#60;br /&#62;
		$updated_info['id']						= $lead_id;&#60;br /&#62;
		$updated_info['first_name']				=	$first_name;			// First Name&#60;br /&#62;
		$updated_info['last_name']				=	$last_name;			// Last Name&#60;br /&#62;
		$updated_info['email']					=	$email;				// Email&#60;br /&#62;
		$updated_info['phone']					=	$phone;				// Phone&#60;br /&#62;
		$updated_info['customFields_400']			=	$alt_phone;			// Alternate Phone&#60;br /&#62;
		$updated_info['customFields_41']			=	$home_value;			// Estimated Home Value&#60;br /&#62;
		$updated_info['customFields_37']			=	$first_mortgage_balance;	// First Mortagage Balance&#60;br /&#62;
		$updated_info['customFields_39']			=	$first_mortgage_type;	// First Mortagage Type&#60;br /&#62;
		$updated_info['customFields_43']			=	$mortgage_years;		// Mortgage Years Remaining&#60;br /&#62;
		$updated_info['customFields_45']			=	$second_mortgage;		// Second Mortgage Balance&#60;br /&#62;
		$updated_info['customFields_49']			=	$credit_card_debt;		// Total Credit Card Debt&#60;br /&#62;
		$updated_info['customFields_51']			=	$available_credit;		// Total Available Credit&#60;br /&#62;
		$updated_info['customFields_408']			=	$auto_loans;			// Auto Loans&#60;br /&#62;
		$updated_info['customFields_410']			=	$student_loans;		// Student Loans&#60;br /&#62;
		$updated_info['customFields_412']			=	$timeshare_loans;		// Timeshare Loans&#60;br /&#62;
		$updated_info['customFields_414']			=	$recreational_vehicles;	// Recreational Vehicle Loans&#60;br /&#62;
		$updated_info['customFields_416']			=	$other_mortgages;		// Other Mortgages&#60;br /&#62;
		$updated_info['customFields_418']			=	$personal_loans;		// Personal Loans&#60;br /&#62;
		$updated_info['customFields_420']			=	$medical_loans;		// Medical Loans&#60;br /&#62;
		$updated_info['customFields_422']			=	$tax_debts;			// Tax Debts&#60;br /&#62;
		$updated_info['customFields_424']			=	$other_debt;			// Other Debt&#60;br /&#62;
		$updated_info['customFields_53']			=	$cash_flow;			// How would you describe your cash flow?&#60;br /&#62;
		$updated_info['customFields_426']			=	$make_your_payments;	// Are you able to make all of your payments?&#60;br /&#62;
		$updated_info['customFields_526']			=	$credit_for_payments;	// Are you using savings or other credit cards to make your payments?&#60;br /&#62;
		$updated_info['customFields_57']			=	$job_title;			// What is your job title?&#60;br /&#62;
		$updated_info['customFields_63']			=	$gross_income;			// What is your gross monthly income?&#60;br /&#62;
		$updated_info['customFields_430']			=	$net_income;			// What is your approximate net monthly income (take-home after taxes, etc)&#60;br /&#62;
		$updated_info['customFields_65']			=	$often_paid;			// How often are you paid?&#60;br /&#62;
		$updated_info['customFields_721']			=	$do_you_have_a_spouse;	// Do you have a spouse or significant other you live with?&#60;br /&#62;
		$updated_info['assistant_first_name']		=	$spouse_first_name;		// Spouse First Name&#60;br /&#62;
		$updated_info['assistant_last_name']		=	$spouse_last_name;		// Spouse Last Name&#60;br /&#62;
		$updated_info['customFields_432']			=	$spouse_job_title;		// Spouse Job Title&#60;br /&#62;
		$updated_info['customFields_434']			=	$spouse_gross_income;	// Spouse Gross Monthly Income&#60;br /&#62;
		$updated_info['customFields_436']			=	$spouse_net_income;		// Spouse Net Monthly Income&#60;br /&#62;
		$updated_info['customFields_438']			=	$spouse_often_paid;		// Spouse Pay Frequency&#60;br /&#62;
		$updated_info['customFields_440']			=	$other_monthly_income;	// Any Other Monthly Income?&#60;br /&#62;
		$updated_info['customFields_67']			=	$do_you_get_a_tax_refund;// Do you typically get a Federal Tax refund each year?es&#60;br /&#62;
		$updated_info['customFields_69']			=	$much_your_tax_refund;	// How much is your typical tax refund amount?&#60;br /&#62;
		$updated_info['customFields_442']			=	$checking_balance;		// Checking Account Balance&#60;br /&#62;
		$updated_info['customFields_444']			=	$savings_balance;		// Savings Account Balance&#60;br /&#62;
		$updated_info['customFields_446']			=	$investment_balance;	// Investment Account Balance&#60;br /&#62;
		$updated_info['customFields_448']			=	$retirement_balance;	// Retirement Account Balance&#60;br /&#62;
		$updated_info['customFields_452']			=	$other_asset_value;		// Other Assets ($ Value)&#60;br /&#62;
		$updated_info['customFields_454']			=	$other_asset_description;// Other Assets Description&#60;br /&#62;
		$updated_info['customFields_460']			=	$when_debt_free;		// In what year do you plan to be debt free?&#60;br /&#62;
		$updated_info['customFields_458']			=	$current_age;			// What is your current age?&#60;br /&#62;
		$updated_info['customFields_462']			=	$spouse_current_age;	// What is your spouse's current age?&#60;br /&#62;
		$updated_info['customFields_516']			=	$notes;				// Notes or Comments&#60;br /&#62;
		$updated_info['customFields_394']			=	$form;				// Lead Sub Type&#60;/p&#62;
&#60;p&#62;		$updated_id = $client-&#38;gt;update_lead($updated_info);&#60;br /&#62;
	}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;class IS {&#60;/p&#62;
&#60;p&#62;	public $url = null;&#60;br /&#62;
	public $curl = null;&#60;/p&#62;
&#60;p&#62;	public function __construct($url) {&#60;br /&#62;
		$this-&#38;gt;url = $url;&#60;br /&#62;
		$this-&#38;gt;curl = curl_init();&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_URL, $url);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_COOKIESESSION, TRUE);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_RETURNTRANSFER, 1);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_SSL_VERIFYPEER, 0);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_COOKIEFILE, &#34;cookies.txt&#34;);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_COOKIEJAR, &#34;cookies.txt&#34;);&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_POST, 1);&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function login($username, $password, $token) {&#60;br /&#62;
		return $this-&#38;gt;request(array('operation' =&#38;gt; 'login', 'parameters' =&#38;gt; array($username, $password, $token)));&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function add_lead($lead_info) {&#60;br /&#62;
		return $this-&#38;gt;request(array('operation' =&#38;gt; 'addLead', 'parameters' =&#38;gt; array($lead_info)));&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function get_leads($filters, $page=0, $limit=100) {&#60;br /&#62;
		return json_decode($this-&#38;gt;request(array('operation' =&#38;gt; 'getLeads', 'parameters' =&#38;gt; array($filters, $page, $limit))));&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function delete_lead($id) {&#60;br /&#62;
		return $this-&#38;gt;request(array('operation' =&#38;gt; 'deleteLead', 'parameters' =&#38;gt; array($id)));&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function update_lead($lead_info) {&#60;br /&#62;
		return $this-&#38;gt;request(array('operation' =&#38;gt; 'updateLead', 'parameters' =&#38;gt; array($lead_info)));&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;	public function request($data) {&#60;br /&#62;
		curl_setopt($this-&#38;gt;curl, CURLOPT_POSTFIELDS, json_encode($data));&#60;br /&#62;
		$content = curl_exec($this-&#38;gt;curl);&#60;br /&#62;
		return $content;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
// END No More Mortgage - Form Post
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Stacey Lindsay on "problems after an update"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/problems-after-an-update#post-196067</link>
			<pubDate>Wed, 03 Apr 2013 23:01:27 +0000</pubDate>
			<dc:creator>Stacey Lindsay</dc:creator>
			<guid isPermaLink="false">196067@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have three problems after doing an update.&#60;br /&#62;
1) In Woo Commerce my products with gravity forms are not working, you click the button to add to the cart and it doesn't do anything.  My products with out the forms work fine.  The products with gravity forms worked fine before the update.&#60;/p&#62;
&#60;p&#62;2) Also in Woo Commerce the products that have forms are not recognizing the price field.  Because of the problem above I tried deleting a form for the product and then adding it back and when I did it gave me an error saying I needed to add a price  and the price was there.  I also tried deleting it updating and then adding it and updating and it still gave me the error.  &#60;/p&#62;
&#60;p&#62;3) I have the Directory Addon and the directories are not showing up.  I place the form on the page and the page and all text on that page are blank.  &#60;/p&#62;
&#60;p&#62;Please help, These are critical elements of our site.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>john-sbwg on "Using form for editing an entry"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/using-form-for-editing-an-entry#post-44702</link>
			<pubDate>Wed, 21 Dec 2011 15:10:16 +0000</pubDate>
			<dc:creator>john-sbwg</dc:creator>
			<guid isPermaLink="false">44702@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;About a month ago I asked whether it was possible to terminate form processing prior to attempting to write an existing entry after editing.  The problem is that if there are unique fields in the form, the write fails because GF assumes that we're always adding data.  I want to be able to use a form for editing entries as well as adding them.  The response I got was apparently considered the final word as the topic was closed, however, the response missed the point.&#60;/p&#62;
&#60;p&#62;In a nutshell, the response pointed me to another thread in the forum that refers to a means of automatically removing the entry after it's created, rather than aborting the form process before the write happens.  This doesn't work for editing for what should be obvious reasons.&#60;/p&#62;
&#60;p&#62;What I need to be able to do is call up an entry, edit it, and save it back to the database using a GF form.  Is this possible?  If so, how would I work around the lack of editing capability in GF?&#60;/p&#62;
&#60;p&#62;GF badly needs the ability to use the same form for adding, editing and deleting entries, IMO.  Please consider adding this capability in a future version.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PD on "Unite Business Theme Gravity Directory Problem?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/unite-business-theme-gravity-directory-problem#post-184085</link>
			<pubDate>Mon, 25 Mar 2013 11:05:03 +0000</pubDate>
			<dc:creator>PD</dc:creator>
			<guid isPermaLink="false">184085@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm using the Unite Business Theme and the forms work great. &#60;/p&#62;
&#60;p&#62;Now I want to include a directory as an add-on but it won't display correctly on my page:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gdtest.co.uk/habb_test2/?page_id=1141&#34; rel=&#34;nofollow&#34;&#62;http://www.gdtest.co.uk/habb_test2/?page_id=1141&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I've tried my site in the Twenty Ten Theme and it works fine. Any help would be appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>omdesign on "Pre-Sale Question - Stripe Connect + Gravity Forms /registration /stripe plugins"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-sale-question-stripe-connect-gravity-forms-registration-stripe-plugins#post-179587</link>
			<pubDate>Thu, 21 Mar 2013 12:15:06 +0000</pubDate>
			<dc:creator>omdesign</dc:creator>
			<guid isPermaLink="false">179587@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, love the product so far.&#60;/p&#62;
&#60;p&#62;For my client I'm interested to know about the tie-in between site customers and stripe data.&#60;/p&#62;
&#60;p&#62;How do we pass member id to stripe for repeat orders? Stripe says they support this.&#60;/p&#62;
&#60;p&#62;On this project, all customers must log-in before ordering is possible, so we should be able to pass along something...&#60;/p&#62;
&#60;p&#62;The in terms of order management, the product name, quantity and address are in wordpress already, so it seems that I could do order management from WP admin area if I had confirmation that stripe processing was successful.&#60;/p&#62;
&#60;p&#62;This part of Gravity+Stripe is not clear.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jason_rogers on "Three things I was surprised to find missing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/three-things-i-was-surprised-to-find-missing#post-172450</link>
			<pubDate>Fri, 15 Mar 2013 13:01:28 +0000</pubDate>
			<dc:creator>jason_rogers</dc:creator>
			<guid isPermaLink="false">172450@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So surprised that I hope I am just failing to find it as having just paid for it I am approaching regret:&#60;/p&#62;
&#60;p&#62;1) I can see no way to pass an entry id on the query string to prepopulate a form (to allow the ability to edit an entry under the same UI they created it).&#60;/p&#62;
&#60;p&#62;2) I can see no easy way to use the data gathered by forms on my site...no view...no api...no shortcodes for displaying a list....no nothing really.  What is the point of data I cannot mine?&#60;/p&#62;
&#60;p&#62;3) I can see no API documentation to add such features if they are use cases somehow only critical to me.&#60;/p&#62;
&#60;p&#62;Without such tools I am going to have to write a lot of glue to bridge this data.&#60;/p&#62;
&#60;p&#62;Thanks for any feedback; form creation and usage has been rather pleasant and I hope there are easy answers to these questions (that sort that make me look sill for not rtfm).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christinarule on "DemandForce Integration?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/demandforce-integration#post-165038</link>
			<pubDate>Fri, 08 Mar 2013 22:23:35 +0000</pubDate>
			<dc:creator>Christinarule</dc:creator>
			<guid isPermaLink="false">165038@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Does anyone know if Gravity forms works with Demandforce?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TactiveLearning on "Export to CSV Link on Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/export-to-csv-link-on-page#post-166876</link>
			<pubDate>Sun, 10 Mar 2013 19:14:29 +0000</pubDate>
			<dc:creator>TactiveLearning</dc:creator>
			<guid isPermaLink="false">166876@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello and thank you for reading my question.&#60;/p&#62;
&#60;p&#62;I would like to have the capability to give a link to export the data as a .csv, .xls, or what have you on a page. &#60;/p&#62;
&#60;p&#62;I currently have the GravityForms Directory List add-on, and I am currently using that to display gathered data, however I would also like to give a link to export that particular form's displayed data to said formats. &#60;/p&#62;
&#60;p&#62;Is there a way to generate this link, or perhaps a shortcode that would allow for the exportation to occur on page? Either one works. &#60;/p&#62;
&#60;p&#62;Thanks again for reading!&#60;/p&#62;
&#60;p&#62;Kind Regards,&#60;br /&#62;
  - TactiveLearning
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gilles Gallico on "Send data to a 3rd party form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-data-to-a-3rd-party-form#post-162131</link>
			<pubDate>Wed, 06 Mar 2013 12:42:31 +0000</pubDate>
			<dc:creator>Gilles Gallico</dc:creator>
			<guid isPermaLink="false">162131@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It seems that this question has already been covered but I can't access to the answers as it is for members only.&#60;/p&#62;
&#60;p&#62;I would like to use your gravity forms and save the data into my WP database but also send in real time the fields of the form to another url / 3rd party form (push).&#60;/p&#62;
&#60;p&#62;And I would like this hack to keep working even after Gravity forms plugin updates since I have 16 WP.&#60;/p&#62;
&#60;p&#62;Is it possible ? How ?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Gilles
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
