Save time, focus on closing deals. Automate manual sales rep. routines and focus on what matters: closing deals.
Go to siteLaGrowthMachine is an API that enables you to build websites and applications that help you grow your business. With LaGrowthMachine, you can easily add features like social media integration, email marketing, and ecommerce to your website or application. You can also use LaGrowthMachine to create custom applications for your business.
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,
})
},
})
LaGrowthMachine uses API keys for authentication. When you connect your LaGrowthMachine account, Pipedream securely stores the keys so you can easily authenticate to LaGrowthMachine APIs in both code and no-code steps.
To connect LaGrowthMachine with Pipedream, copy your API Key from your LGM Settings > Integrations & API page and paste it below.