SOLVED

Custom HTML for form

Go to solution
Anonymous
Not applicable

Custom HTML for form

Though the form editor is good. We have needs to create a custom form.

I read we can just take the html from the generated form (field names, etc), and put directly into an html page - in order to post to marketo yet still not limit our form design.

Is there any step by step on this?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Custom HTML for form

David - This is possible. You have two options for posting form data into Marketo: 

1 – Browse/client-side approach. Here are the docs:

http://developers.marketo.com/documentation/websites/forms-2-0/

2 – Use your own form. Then do a server-side post. It is currently only possible to post 30 form fill-outs per minute from one single IP address for server-side post. Here are the docs for this:

https://community.marketo.com/MarketoResource?id=kA650000000GsXXCA0

 

View solution in original post

7 REPLIES 7
Anonymous
Not applicable

Re: Custom HTML for form

Here is the help article on how to embed a form on your website:
https://community.marketo.com/MarketoArticle?id=kA050000000LHD3CAO

Anonymous
Not applicable

Re: Custom HTML for form

Thanks, but no no .. not looking to embed. I am looking to hand code the form and simply use marketo form field names, post url and any javascript that is needed to post the form.

This would be a custom form - not embeded and not iframed.


Kenny_Elkington
Marketo Employee

Re: Custom HTML for form

Hi David,

This is not specifically tailored for an HTML form, but it should provide all of the info you need to make your own form.  To get your field names, go to your Admin->Field Management section, and select Export Field Names.  The SOAP API names are the ones which you want for form submission.
Anonymous
Not applicable

Re: Custom HTML for form

Thanks for the answers, but the question is not how to get the names, its how to create the custom form with those field names, javascript functions and post url necessary.
Anonymous
Not applicable

Re: Custom HTML for form

David - This is possible. You have two options for posting form data into Marketo: 

1 – Browse/client-side approach. Here are the docs:

http://developers.marketo.com/documentation/websites/forms-2-0/

2 – Use your own form. Then do a server-side post. It is currently only possible to post 30 form fill-outs per minute from one single IP address for server-side post. Here are the docs for this:

https://community.marketo.com/MarketoResource?id=kA650000000GsXXCA0

 

Anonymous
Not applicable

Re: Custom HTML for form

Hi


We actually did that and it worked with form 1.0 but I would not recommend it. We are now using the form 2.0 embedded code.


The reason I will not recommend this is because Marketo does a pretty good job filtering robots and spam submissions. By making your own form you are taking all that away and you have to take care of the spam and garbage submissions. At some point we got 40 spam submissions from russian emails. We handled the attack by sales had the perfect argument to complain about the quality of the leads, believe me you want to avoid that at all cost.

 



Anonymous
Not applicable

Re: Custom HTML for form

Thanks Murtza and Fernando - great answers!