Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
As we all know, adding the standard utm_* query params to email links is something Marketo can’t do automatically. Storing UTM params in a Program-level {{my.token}} and building links from ${mktoString} variables are smart moves. But it’s tough to tokenize every single link. (Users must remember to...
Excellent question. If you're sure you're saving as UTF-8, I wouldn't worry much about accidentally creating UTF-8 with BOM, as any editor worth its salt will default to not including the BOM. But once you're getting data from outside sources and building a list uploader you definitely need to worry...
Does this look like good multipart/form-data for the Marketo REST API Bulk Import endpoint? It does, right? Here it is with my text editor (EditPlus) set to show all whitespace, so you can see the CRLFs (represented as ¶) in the right places: And yet the response from Marketo is:{ "requestId": "a...
Feel like we're talking about 2 different things. If the Program is synced with an SFDC Campaign, you can't use the webhook-to-Request Campaign API method because it uses the Add to SFDC Campaign flow step, and Marketo disables that step for synced Proggies. But if the Program is synced with an SFD...
Well, there is a way, but only if you incorporate a webhook-compatible service. Not within Marketo proper. We do this for the very similar task of running Add to SFDC Campaign based on a value stored in a {{lead.token}}.
@Vinay_Kumar this seems AI-generated, let’s try to stay on topic for the OP. @gergana you can’t change the Program Status to {{lead.Some Field}}. Even if Some Field contains the exact Program Status label like “Webinar > Registered” or just “Registered”, that won’t work because under the hood the Ch...
My pleasure. Interesting how the much-derided Java Date and Calendar objects — which are clunky to be fair — are still way better at this than JavaScript.
Race condition Because this works asynchronously, in theory if 2 people registered at the exact same time, and there was only a single spot left hitting the registration limit, we could end up with a registration count 1 more than the limit. This mostly comes down to the API call to check the numb...
Your developer community meets on the 4th Wednesday of each month. You want to send monthly invites from Marketo without having to hard-code anything. Earlier, we learned how to find the first 𝒀-day of next month, and this is just different enough to get its own post. As always, start with the stan...