SOLVED

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

Go to solution
Anonymous
Not applicable
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' 
Tags (1)
1 ACCEPTED SOLUTION
Anonymous
Not applicable
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)

View solution in original post

1 REPLY 1
Anonymous
Not applicable
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)