Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Unless something has changed, while you can get the join URL as Sanford mentioned, I don't think you can get attendees automatically from Zoom, which is annoying. So you can automate the joining process, but you can't automate "sorry you missed it", or "thanks for attending" emails. Only a partial s...
Yep, as Sanford said, you won't be sending to people who have STOPed, but to ensure other systems know that, you can use something like Zapier and their Marketo integration. Twilio can send outgoing webhooks from opt-outs, so when someone opts out, throw to Zapier. Zapier then uses its Marketo integ...
Weird. Just tried in Postman, with these details: https://(redacted).mktorest.com/bulk/v1/activities/export/create.json?format=csv&access_token=(redacted)&createdAt={ "startAt": "2020-02-15T23:59:59-00:00","endAt": "2020-02-26T23:59:59-00:00"}&activityTypeIds=[113] Header is: Content-Type: applicat...
While this is the Salesforce documentation, it's logical to think Dynamics works in the same way... https://docs.marketo.com/pages/releaseview.action?pageId=7515131 Do you have a "Dynamics is Deleted" or simply "is Deleted" field in Marketo? If people are deleted in Dynamics likely that flag switche...
Hi everyoneHaving some trouble with a Marketo Bulk API job. Here's the Python code: # marketo paramsparameters = { 'format': 'csv', 'access_token': access_token, 'createdAt': '{"startAt": "2020-02-15T23:59:59-00:00","endAt": "2020-02-26T23:59:59-00:00"}', 'activityTypeIds': '[113]'}head...
Ah, even better! I didn't realise you could run that in the opposite direction - changing the limit to be less, rather than more. Nice. I haven't actually tried it with multiple runs but I'm pretty confident it would. Maybe set a test campaign with a limit of 10, throw some of your internal emails i...
Agree, without Sanford I would have no idea how to do any of this. Velocity, and the UI Marketo gives you, is not a forgiving programming interface!
This is possible. In Admin there is a section called "Smart Campaign". Click that, and you can edit the maximum number of people that qualify for a Smart Campaign before it is automatically aborted. If you put 1,000 as the number there, and had your send based on a smart campaign (I'm guessing it i...
Ok, so to ensure they don't get any other content while they are in the engagement program you probably want to build membership of that engagement program as a filter in all other sends. Hopefully this isn't too complicated but this wouldn't require any extra fields in Marketo or workarounds. Anot...
You might already know this but you can set API roles which have access to do certain things, but not others. But I'm guessing if you want access to write to some fields, but not others, that can't be done. It's as granular as the API endpoints, basically - so "read/write" on fields would give acces...