Adobe Marketo Engage, the world’s largest marketing automation platform, is a singular solution that lets you attract, segment, and nurture customers — from discovery to biggest fan. And each touchpoint is tracked so you know what’s working. No more batch and blast. No more unqualified leads. Just effective engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
marketo: {
type: "app",
app: "marketo",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.marketo.$auth.rest_api_identity_url}/oauth/token`,
headers: {
Authorization: `Bearer ${this.marketo.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.