SOLVED

Re: Is there a token for a link to the editable lead record?

Go to solution
Kana_Lai
Level 3

Is there a token for a link to the editable lead record?

Hello,

Is there a token or something I can put into the alert email that would link to the lead record in Marketo? I tried using {{SP_Send_Alert_Info}} but all of the fields appear to be read only and can't be edited. It would be nice if our lead manager can just click on the link and update the status of the lead record.

Sorry if this is something really basic. We just got Marketo and are still learning.

Thanks!

Tags (2)
1 ACCEPTED SOLUTION

Accepted Solutions
Jay_Jiang
Level 10

Re: Is there a token for a link to the editable lead record?

7 REPLIES 7
SanfordWhiteman
Level 10 - Community Moderator

Re: Is there a token for a link to the editable lead record?

https:​//{instance hostname}.marketo.com/leadDatabase/loadLeadDetail?leadId={{lead.Id}}

Where {instance hostname} is the hostname you see when logged into the Marketo UI.

Floyd_Alvares2
Level 8

Re: Is there a token for a link to the editable lead record?

Hey Sanford,

Just checking, I do not think the URL has the system.munchkinID? but more of the Marketo POD instnace like "app-sj17".

I tried using the munckinID in the URL with the lead id and it did not work?

Thanks

Floyd

SanfordWhiteman
Level 10 - Community Moderator

Re: Is there a token for a link to the editable lead record?

Woops, totally my bad. You're right, has to be hard-coded. Will edit.

Jay_Jiang
Level 10

Re: Is there a token for a link to the editable lead record?

Not that I know of. But you can make one.

https://app-xx##.marketo.com/leadDatabase/loadLeadDetail?leadId={{lead.Id}}

Kana_Lai
Level 3

Re: Is there a token for a link to the editable lead record?

I just get this blank screen that says Person not found in the tab title.

pastedImage_0.png

Did I set it up wrong?

pastedImage_1.png

pastedImage_2.png

Thanks for your help!

SanfordWhiteman
Level 10 - Community Moderator

Re: Is there a token for a link to the editable lead record?

  • Don't put the {{lead.token}} inside the Text {{my.token}}!
  • Don't put the https:​// inside the Text {{my.token}}, either, though this is merely a tracking concern it's a good habit to break.

Build out your <a> tag accordingly, within the body of the email.

Kana_Lai
Level 3

Re: Is there a token for a link to the editable lead record?

Ah! I get it now! So I didn't even need to create a custom token at all, just stick the {{lead.Id}} at the end of the link. It was probably obvious, but that was my first time trying to make a token, so thanks for the tips!