Simple, Affordable, Powerful Marketing Platform
The SharpSpring API offers a gateway to an extensive marketing platform, enabling you to automate your marketing workflows, manage customer relationships, and glean insights from comprehensive analytics. With Pipedream, you can harness this power to create seamless integrations that trigger actions in SharpSpring based on external events or data, sync leads and contacts across platforms, and personalize marketing efforts based on user behavior and preferences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sharpspring: {
type: "app",
app: "sharpspring",
}
},
async run({steps, $}) {
const data = {
"method": `getLead`,
"params": `{
"id":"<a lead id>"
}`,
"id": `<your request ID>`,
}
return await axios($, {
url: `https://api.sharpspring.com/pubapi/v1/`,
params: {
accountID: `${this.sharpspring.$auth.account_id}`,
secretKey: `${this.sharpspring.$auth.secret_key}`,
},
data,
})
},
})
The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klaviyo: {
type: "app",
app: "klaviyo",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://a.klaviyo.com/api/accounts/`,
headers: {
"Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
"revision": `2023-12-15`,
},
})
},
})