Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Initially it was all set up to store Config data using Script Tokens, but the API to manage that is gone so we switched over to Text Tokens. The config data is populated using the API from a different system, its not manually set.
I just tested something and I forgot to mention something important. #set($clinics = {})#set( $clinics.Map = {...} That is actually being pulled in from a text token. If i put that whole object in the same Email Script token, it seems to work fine. But this is not how its set up. The idea is that th...
Hello! I'm trying to get an object value by its key. It seems to work fine if i manually get the ID (i.e. $clinics.Map.get("784423").NME) but when I use a variable instead of the manual number (i.e. $clinics.Map.get($string_item).NME) it always prints out the last item in the reminder list object, w...
I have no idea, and no way to tell. I just know all the IF statements and the code i used to even save a variable from the TEXT token doesn't work, and it works just fine if it's a SCRIPT token. That's the only thing that's changed. If i try to do a simple #set variable and then just print it, I ge...
It feels like since the switch to a TEXT token, like marketo isn't full recognizing this as an OBJECT and that, as soon as I try to assign a key into a variable or do an IF statement, it doesn't save it.
I don't understand what is going on, since switching from the SCRIPT token to store my hash, to storing it in a TEXT token (because we can no longer update SCRIPT with API) none of my IF statements that previously worked are functional (They always return FALSE), and I cannot find any way to get the...
I"m sorry I don't understand what you mean on this? I shared the code I have do you see what I have wrong?
If that was the case it wouldn't be printing the value on the page.
No change: $lead.clinicId has a value of 123456 (Based on data in field and what i print on the page)Result clincID is null$lead.clinicId has no value in the marketo field (Based on data in field and what i print on the page)Result clincID is nullThe exact Code I did, CID is printing either the numb...