What do you want to automate

with Lead Identity Check and Epic Games?

Prompt, edit and deploy AI agents that connect to Lead Identity Check, Epic Games and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Integrate the Lead Identity Check API with the Epic Games API
Setup the Lead Identity Check API trigger to run a workflow which integrates with the Epic Games API. Pipedream's integration platform allows you to integrate Lead Identity Check and Epic Games remarkably fast. Free for developers.

Connect Lead Identity Check

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    lead_identity_check: {
      type: "app",
      app: "lead_identity_check",
    }
  },
  async run({steps, $}) {
    const data = {
      "Firstname": `Sergio`,
      "Lastname": `Wong`,
      "Email": `sergio@pipedream.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://leadidentitycheck-node.vercel.app/main/lic/v1`,
      headers: {
        " x-lic-key": `${this.lead_identity_check.$auth.api_key}`,
        "filterkey": `${this.lead_identity_check.$auth.filter_key}`,
      },
      data,
    })
  },
})

Connect Epic Games

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    epic_games: {
      type: "app",
      app: "epic_games",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.epicgames.dev/epic/id/v2/accounts`,
      headers: {
        Authorization: `Bearer ${this.epic_games.$auth.oauth_access_token}`,
      },
      params: {
        accountId: `your_account_id`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo