Munchkin API associateLead not updating in Marketo
Hello all,
I have been trying and trying, and I don't see what is going wrong here. This is my script that I am using:
<script>
$(document).ready(function(){
mktoMunchkinFunction('associateLead',
{
Email: "chester@tester.com",
FirstName: "Chester",
LastName: "Tester"
},
'MY-HASH');
});
</script>
When I load the page (in incognito mode, as an anonymous lead), I see the correct hash in the script, and my console shows the ?associateLead call being sent and returned with a 200 Status (OK):

I do not see any console errors or any network errors in my web inspector. However when I search my leads in Marketo, chester@tester.com does not show up. Is there anything I am missing?