I'll do my best to explain this...
I use Capsule CRM for, obviously, customer management. I want my customers to be able to complete a form on my website that, upon submission, sends the data to Capsule to create a new contact.
Capsule provides a form for this purpose, but I'd rather use Gravity forms (for a number of reasons) to accomplish this.
Here is what Capsule says about how to do it, using their form:
About Website Contact Form Integration
With Website Contact Form integration you can embed forms within your own website that will let your customers enter their details directly into Capsule. We have kept our form really simple so you can apply whatever style suits your businesses identity.Step 1 - Generate Form Key
Capsule uses this key to know which account contacts should be loaded against. If the key is not supplied when the form is submitted an error message will be displayed. When this key is updated existing forms will no longer work using the old key.Web Form Key
xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxxStep 2 - Create a form
Add the form into your website with the following easy steps:Copy the following code and paste it into your website
Change the COMPLETE_URL to the page you wish to display after the form is submitted
Apply styling to match the rest of your website<form action="https://service.capsulecrm.com/service/newlead" method="post"> <input type="hidden" name="FORM_ID" value="xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx"> <input type="hidden" name="COMPLETE_URL" value="http://yourwebsiteurl.com"> First name: <input type="text" name="FIRST_NAME"> Last name: <input type="text" name="LAST_NAME"> Email: <input type="text" name="EMAIL"> <input type="submit" value="Submit"/> </form>
Is there any way to customize a Gravity form to accomplish the same thing?