with Marketing Master IO and Zoho FMS?
The Marketing Master IO API enables the automation of digital marketing tasks, including email campaign management, audience segmentation, and performance analytics. With its integration on Pipedream, you can craft workflows that streamline your marketing efforts, trigger actions based on customer data, and analyze campaign results in real-time. The API's capabilities, when coupled with Pipedream's serverless platform, allow for the creation of dynamic, responsive marketing strategies without extensive manual oversight.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
marketing_master_io: {
type: "app",
app: "marketing_master_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.marketingmaster.io/v1/contacts/list`,
headers: {
Authorization: `Bearer ${this.marketing_master_io.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_fms: {
type: "app",
app: "zoho_fms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://fsm.${this.zoho_fms.$auth.api_domain}/fsm/v1/users`,
headers: {
Authorization: `Bearer ${this.zoho_fms.$auth.oauth_access_token}`,
},
})
},
})