Why aren't associateLead calls showing up in activity logs Munchkin JavaScript | Community
Skip to main content
March 19, 2014
Solved

Why aren't associateLead calls showing up in activity logs Munchkin JavaScript

  • March 19, 2014
  • 1 reply
  • 718 views
This call appears to not work:
mktoMunchkinFunction('associateLead', { KeyPositionTitle: 'Software Developer' }, munchkinHash);

I make the call, inspect the data being sent in Fiddler, and everything seems ok. I don't see any indication when looking at the activity log that any events were received -- https://app-abc.marketo.com/leadDatabase/loadLeadDetail?leadId=433763

Questions:
1) Is there a long delay between when I sent the associateLead request and when it appears in the activity log? Other events seem to show up somewhat quickly.

2) Details:
mktoMunchkinFunction('associateLead', { KeyPositionTitle: 'Software Developer' }, munchkinHash);
email used for hash is "alpha@beta.com"
munchkinHash is '2b6be60fa2583f1b97c2f32357fec59fb6e31234' 
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by
The 'associateLead' call is missing the Email attribute. This is required (even though the documentation doesn't call it out).

The valid call looks like this:
mktoMunchkinFunction('associateLead', { Email: 'alpha@beta.com', KeyPositionTitle: 'Software Developer' }, munchkinHash);

(JS reference: 
https://community.marketo.com/MarketoResource?id=kA650000000Gvx0CAC)

1 reply

Accepted solution
March 19, 2014
The 'associateLead' call is missing the Email attribute. This is required (even though the documentation doesn't call it out).

The valid call looks like this:
mktoMunchkinFunction('associateLead', { Email: 'alpha@beta.com', KeyPositionTitle: 'Software Developer' }, munchkinHash);

(JS reference: 
https://community.marketo.com/MarketoResource?id=kA650000000Gvx0CAC)