Emelia

The only platform dedicated to Growth Marketing teams and B2B automation companies

Go to site
Explore
/
Apps
/
Emelia

Emelia API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    emelia: {
      type: "app",
      app: "emelia",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graphql.emelia.io/graphql`,
      headers: {
        "Authorization": `${this.emelia.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      params: {
        query: `query me{
                me{
                      uid
                      name
                      email
                      picture
                  }
                }`,
      },
    })
  },
})

Authentication

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

To retrieve your API Key,

  • Navigate to your Emelia account and sign in
  • Click the User dropdown on the top right, then click on “API Keys & Webhooks”