with LaGrowthMachine and ipstack?
The LaGrowthMachine API on Pipedream allows you to craft powerful sales and marketing automations by leveraging its outreach and follow-up capabilities directly within serverless workflows. With Pipedream's integration, you can trigger actions in LaGrowthMachine based on events from other apps, process data, and automate sequences of tasks to enhance lead generation and engagement strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lagrowthmachine: {
type: "app",
app: "lagrowthmachine",
}
},
async run({steps, $}) {
const data = {
"audience": ``,
}
return await axios($, {
method: "post",
url: `https://apiv2.lagrowthmachine.com/flow/leads`,
params: {
apikey: `${this.lagrowthmachine.$auth.api_key}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ipstack: {
type: "app",
app: "ipstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.ipstack.com/8.8.8.8`,
params: {
access_key: `${this.ipstack.$auth.access_key}`,
},
})
},
})