What do you want to automate

with Blizzard Battle.net and eGestor?

Prompt, edit and deploy AI agents that connect to Blizzard Battle.net, eGestor 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 Blizzard Battle.net API with the eGestor API
Setup the Blizzard Battle.net API trigger to run a workflow which integrates with the eGestor API. Pipedream's integration platform allows you to integrate Blizzard Battle.net and eGestor remarkably fast. Free for developers.

Connect Blizzard Battle.net

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    battle_net: {
      type: "app",
      app: "battle_net",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.battle_net.$auth.region}.api.blizzard.com/d3/data/item-type?locale=fr_FR`,
      headers: {
        Authorization: `Bearer ${this.battle_net.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect eGestor

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    egestor: {
      type: "app",
      app: "egestor",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.egestor.com.br/api/v1/usuarios`,
      headers: {
        Authorization: `Bearer ${this.egestor.$auth.oauth_access_token}`,
      },
    })
  },
})

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