What do you want to automate

with AccuWeather and Notiff (API Key)?

Prompt, edit and deploy AI agents that connect to AccuWeather, Notiff (API Key) 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
Create Notification with the Notiff (API Key) API

Send a new notification to a user or system via notiff.io. See the documentation

 
Try it
Integrate the AccuWeather API with the Notiff (API Key) API
Setup the AccuWeather API trigger to run a workflow which integrates with the Notiff (API Key) API. Pipedream's integration platform allows you to integrate AccuWeather and Notiff (API Key) remarkably fast. Free for developers.

Connect AccuWeather

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: {
    accuweather: {
      type: "app",
      app: "accuweather",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://dataservice.accuweather.com/locations/v1/regions`,
      params: {
        apikey: `${this.accuweather.$auth.api_key}`,
      },
    })
  },
})

Connect Notiff (API Key)

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: {
    notiff: {
      type: "app",
      app: "notiff",
    }
  },
  async run({steps, $}) {
    const data = {
      "id_notification_source": `${this.notiff.$auth.notification_source_id}`,
      "title": `New Notification`,
      "description": `Notification from Pipedream`,
      "url": `https://pipedream.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://notiff.io/api/1.1/wf/create_notification`,
      headers: {
        "content-type": `application/json`,
      },
      data,
    })
  },
})

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