Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I don't think you're following. The partyness of the cookie is irrelevant.You said you "can share a unique Id" between systems without having to use HTTP for transport, that is, you can push the id into the user's account on the e-commerce system and pull it out when the user logs into the e-commer...
I wouldn't expect to be able to consistently assign a Rich Text token directly to a JS variable, because when building HTML (especially by hand) you want whitespace to be insignificant, while newlines are significant in string literals. I would output the tokens as hidden elements, then show the one...
Hank, like Stijn noted, any survey tool that can maintain, or even simulate, a many:1 survey:lead relationship is going to require some level of development or at least what we might call "power admin." Even a tool that's been purpose-built to use a Salesforce custom object is likely going to assum...
For example: document.location.hash = document.querySelector('META[name="description"').content; Munchkin.init('AAA-BBB-CCC');The logged Visit Web Page would be: nation.marketo.com/inbox/#Manage your inboxUsing this method, any supplementary information you can read out of the page conte...
Make sure you have declared the namespace: xmlns:xsi="w3.org/2001/XMLSchema-instance"or use
Yes and no.You can't embed text inputs or selects in an email, and you can't realistically expect people to click on more than one link to answer multiple questions.But you can have a single yes/no question that takes people to a Thank You URL immediately, using the link click as your survey respons...
If you are truly banned from using a querystring then just use a path parameter. example.com/learn/what-is-devops;r or example.com/learn/what-is-devops/r can be easily decomposed into path + param. All in how you configure your server. There's nothing special about the querystring in this way.
Nice! Undocumented, eh?
Those are more for Munchkin, but of course there are interrelationships.
If you know the id of the lead to which these records were erroneously tied, you can retrieve that record's cookie list by adding 'cookie' to the fields list in a Get Lead by ID REST call. This will give you a list of cookies which you can purge(or reassociate if you know enough about the visitor)Y...