Lookup list in Marketo | Community
Skip to main content
Level 3
July 3, 2025
Solved

Lookup list in Marketo

  • July 3, 2025
  • 1 reply
  • 809 views

Hi,

I am looking for an option in Marketo where I can keep list of lookup fields and use these look up fields to render in the email template

for example: <urlkey,urlValue> . Would like to get urlValue based on urlKey and render in the email.

Please suggest if any other alternatives.

 

Thanks,

Babu

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 SanfordWhiteman

Easy. Set up an object (LinkedHashMap, technically) in a Velocity token.

#set( $myStuff = { "key": "value", "key2": "value2" })

 

Then get values from it in other Velocity tokens.

${myStuff.get("key2")}

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
Level 10
July 3, 2025

Easy. Set up an object (LinkedHashMap, technically) in a Velocity token.

#set( $myStuff = { "key": "value", "key2": "value2" })

 

Then get values from it in other Velocity tokens.

${myStuff.get("key2")}
Level 3
July 3, 2025

Thank you Sanford, it worked very well.

 

Thanks,

Babu

Level 3
July 3, 2025

Hi Sanford,

Is there any of your blogs available for border understanding on lookup concept in Marketo.

 

Thanks,

Babu