Yeah it's an interesting requirement, my guess would be that the legacy system has some state associated with it? And can only run every n minutes or so under 15 minutes. This woul...
If you have dev resources, or want to write some code yourself, it's easy enough. You could set up a campaign to react to the changes you care about on records that adds the record...
Yeah I've done this and it's fairly easy if you have a sitemap. You can crawl the pages extracted from the sitemap, parse the HTML, and return URLs with Marketo forms. Feel free to...
Yeah one way that comes to mind is to enqueue a separate job. For example you could kick off a "no phone number" job where you grab the records w/o a phone number, drop the phone c...
Here's some code to get you started: quick_detect.py · GitHub. This uses a few simple, but useful filters (e.g First Name == Last Name).Let me know if you need any help with your i...
I've implemented a server-side solution that your developers could try. Basically you can collect leads in a static list, pull from this list every N minutes, and run some code aga...
Yeah you can programmatically access smart lists. The general flow is to create the bulk job, grab the job id, enqueue the job, and export when the job status hits complete. I have...
Based on what I see here: https://www.fullcontact.com/blog/asynchronous-delivery-with-webhooks-and-testing-locally/ it seems that Marketo is just acting as the API Consumer in the ...