Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I was under the impression REST API isn't available if you integrated salesforce, is this still the case?
Doable using an Engagement program.Have 1 stream that has all the content and sends weekly on M-F at like 9am and another stream with nothing in it. Create a smart campaign with recurring schedule for daily M-F at 11:59 pm, smart list is member of EP + constraint Stream is stream 1, flow is change E...
If you can't use REST API, you can try a webhook + php solution. PHP file uses cURL to get the current contents of a page, formats the content, returns the content to a custom field on the lead. Use the custom field as a merge variable in the email.Webhooks can only be triggered so you wouldn't be a...
If you can use the REST API, you could use the update snippet content API to continuously update a single snippet which is placed in your email. i.e. Grab the current contents of the feed, put it into the body of the API call, send to Marketo, snippet is updated with current content.
There is a ton of content on how to create html emails all over the web. The challenge is creating a single email that is compatible and looks good across multiple clients and platforms.Succinctly in reply to your questions though:Delete any
Quite easy to do with some html and javascript knowledge. You would also need some Marketo forms API knowledge.A basic scaleable solution would be to use onclick in the tag that opens the lightbox form Video 1
Video 2
Video 3
If you must see the program statuses you've set, then you should be cloning an email program for each email to be sent. Multiple email programs can be nested inside a default program for overall reporting.There's the hassle of activating a set of smart campaigns for every email program though if you...
If you must - publish the page, visit the page and open your browser's inspector tool to find the class or id for the elements you want to change. In FF, Chrome and IE, you can right click anywhere on a page and click "Inspect".If you're more advanced, you can drag a html wysiwyg element onto the la...
Do you have Salesforce integrated with your Marketo?
Are you able to paste your request body?Regarding the 200 OK response, I think Marketo will send that all the time, you need to debug by looking in the response body for "success":true or "success":false. I use Postman for my REST API testing to see this:{ "requestId": "6b99#1631472ac50", "suc...