with Instasent and Marketing Master IO?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instasent: {
type: "app",
app: "instasent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instasent.com/organization/account`,
headers: {
Authorization: `Bearer ${this.instasent.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})