What do you want to automate

with Wafrow and Microsoft Graph Security?

Prompt, edit and deploy AI agents that connect to Wafrow, Microsoft Graph Security and 3,000+ 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 Wafrow API with the Microsoft Graph Security API
Setup the Wafrow API trigger to run a workflow which integrates with the Microsoft Graph Security API. Pipedream's integration platform allows you to integrate Wafrow and Microsoft Graph Security remarkably fast. Free for developers.

Connect Wafrow

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

Connect Microsoft Graph Security

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: {
    microsoft_graph_security: {
      type: "app",
      app: "microsoft_graph_security",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/security/alerts`,
      headers: {
        Authorization: `Bearer ${this.microsoft_graph_security.$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