Here is the situation. My VP wants me to capture data from a form to monitor one of our partners. After the form is filled he wants to automate the data to go to the partner's system. The only thing, I have is a form action from a Pardot form handler. Anyone have any advise on ways to make this happen?
Solved! Go to Solution.
I am not sure how the web hook would work in this case but I will look into it. Thanks.
If you have a generic form acceptor on the other end, then you use Form/Url encoding in the webhook definition, and make sure you use their field names (which will not be exactly the same as the Marketo field names):
I'm assuming here that there won't be a useful response. If there is, choose JSON or XML appropriately.
You should be able to pass the details from your instance to the partner after the form submit using a webhook in a flow step. Now how you would trigger the webhook based on the pardot form handler action is unknown to me but shouldn't be too hard to figure out.
Real question, why are you mixing pardot forms with a Marketo DB? Seems like a pretty unconventional use-case.
Marketing asset sharing and our partner doesn't want to manually upload the leads so I need to find a way to share the lead in an automated way.
I am not sure how the web hook would work in this case but I will look into it. Thanks.
I am not sure how the web hook would work in this case but I will look into it. Thanks.
If you have a generic form acceptor on the other end, then you use Form/Url encoding in the webhook definition, and make sure you use their field names (which will not be exactly the same as the Marketo field names):
I'm assuming here that there won't be a useful response. If there is, choose JSON or XML appropriately.
Thanks Sanford. I will see what they called the fields and will map it back from there.
Quick question is there a way to do it without knowing the field names? They were suppose to map it to our fields?
If they can accept your field names exactly, then you can use the field names on your form (note these are the Marketo SOAP names, not the {{lead.token}} names -- you can see the names on your form by by inspecting in your browser).
If I understand correctly I just grab the Soap names = {{lead. Token}}& continue the rest?
Yep.
Great I will test this out and see if it works. Thanks!