Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
@SanfordWhiteman ,The payload is sent to LeadCapture as key=value params in the POST URL, so that's OK. So the question is, if this works 99% of the time, what are the possible reason(s) that could cause the server to timeout the remaining 1%? I'm assuming that a timeout means that there's no resp...
So, we've been experimenting with POSTing our form submission data directly to `/index.php/leadCapture/save2. We are interested in doing this because we have our own custom form journey, and we basically followed along with the same logic that's in Marketo's forms2 github. We are using AJAX to POST ...
Yep! right again! I'm glad to get this resolved. And you were right about the URL params, it parsed that automatically (thank god). Lastly, are you aware of any special documentation that explains the key:vals in the marketo payload object? I foresee that other issues will come up where i need to se...
Thanks Sanford Whiteman you are correct. I actually figured part of it out, by poring over Marketo forms2.js · GitHub I found that `_mktoReferrer` will set the value in the Activity log.However, the last step that remains is getting the "Query Parameters" with the UTM values. Do you have any though...
Hey yall, i'm in a real pickle. So I need to send a payload to Marketo and i need to set the "Referrer URL". The site domain is coming through ie. example.com, but I need the full URL path, ie example.com/stuff/stuff. There are campaigns triggered on this URL, and it's not getting captured when I PO...
Cool! I'm going to give this a run! Thanks! Do you know of any reasons why `submit()` or `onSuccess()` would not execute? We of course are submitting the marketo form in the background - so the `MktoForms2` script isn't watching for form submissions that isn't it's own, correct? Any info you have wo...
Doesn't anyone know how to catch marketo submission errors using the JavaScript API, when `save2` does not POST?We are submitting our Marketo forms using the JS API, and are having issues with payload not actually being delivered to Marketo. I've found that the `MktoForms2` object is loading correct...