with SharpSpring and AgentX?
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,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agentx: {
type: "app",
app: "agentx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.agentx.so/api/v1/access/getProfile`,
headers: {
"x-api-key": `${this.agentx.$auth.api_key}`,
},
})
},
})