Automizy

Email Marketing Automation Software

Go to site
Explore
/
Apps
/
Automizy

Automizy API Integrations

Build and run workflows using the Automizy 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

With the Automizy API, you can build a variety of applications and integrations. Some examples include:

  • A web application that allows users to sign up for Automizy emails
  • An integration that adds Automizy contacts to a CRM system
  • A Zapier integration that triggers an Automizy campaign when a new lead is generated
  • A bot that helps Automizy users segment their lists
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    automizy: {
      type: "app",
      app: "automizy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://gateway.automizy.com/v2/smart-lists`,
      headers: {
        Authorization: `Bearer ${this.automizy.$auth.api_token}`,
        "Content-Type": `application/json`,
        "Accept": `application/json`,
      },
    })
  },
})

Authentication

Automizy uses API keys for authentication. When you connect your Automizy account, Pipedream securely stores the keys so you can easily authenticate to Automizy APIs in both code and no-code steps.