LaGrowthMachine

Save time, focus on closing deals. Automate manual sales rep. routines and focus on what matters: closing deals.

Go to site
Explore
/
Apps
/
LaGrowthMachine

LaGrowthMachine API Integrations

Build and run workflows using the LaGrowthMachine API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

LaGrowthMachine 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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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,
    })
  },
})

Authentication

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.