HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Integrate the HTTP / Webhook API with the Noticeable API

Setup the HTTP / Webhook API trigger to run a workflow which integrates with the Noticeable API. Pipedream's integration platform allows you to integrate HTTP / Webhook and Noticeable remarkably fast. Free for developers.

Create Email Subscription with Noticeable API on New Requests from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
Create Publication with Noticeable API on New Requests from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
Delete Email Subscription with Noticeable API on New Requests from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
Search Email Subscriptions with Noticeable API on New Requests from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
Update Email Subscription with Noticeable API on New Requests from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New Email Subscription Created Event from the Noticeable API

Emit new events when a new email subscription created. See the docs

 
Try it
New Email Subscription Deleted Event from the Noticeable API

Emit new events when an email subscription is deleted. See the docs

 
Try it
New Publication Created Event from the Noticeable API

Emit new events when a new publication created. See the docs

 
Try it
Create Email Subscription with the Noticeable API

Creates an email subscription, See the docs

 
Try it
Create Publication with the Noticeable API

Creates a publication, See the docs

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Delete Email Subscription with the Noticeable API

Deletes an email subscription, See the docs

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it

Connect HTTP / Webhook

1
2
3
4
5
6
7
8
9
10
11
12
13
// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://pokeapi.co/api/v2/pokemon/charizard",
    })
    return data.species
  },
})

Overview of Noticeable

What you can build using the Noticeable API

Noticeable is an API designed to make it easier for developers to build
applications and services for healthcare, elderly care, home automation and
beyond. Using the Noticeable API, developers can create and manage applications
that automate everyday tasks and enable social interaction, increase senior
safety, and enable health care professionals to remote monitor their patients.

The Noticeable API lets developers create applications for:

  • Motion Detection & Notification: Create motion detection systems, connected
    doorbells and environmental monitors.
  • Remote Video Surveillance: Create surveillance systems powered by wireless
    cameras.
  • Automation & Robotics: Create robotic cleaners and automated systems for
    senior safety.
  • Location & Tracking Solutions: Develop location-based tracking and location
    sharing applications.
  • Health & Wellness Monitoring: Monitor health metrics, create health
    dashboards, and gain better insights into the health of the elderly and
    patients.
  • Social Interactions: Enable seniors and patients to communicate more easily
    with theircaregivers and connect with other users remotely.
  • Home & Hospital Care: Develop applications and services to assist in home
    care and hospital care, including prescription delivery and medication
    reminders.
  • Automated Home Care: Automate care for family members that need special
    attention, such as tips for energy efficiency and protection against theft.

Connect Noticeable

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    noticeable: {
      type: "app",
      app: "noticeable",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.noticeable.io/graphql`,
      headers: {
        "Authorization": `Apikey ${this.noticeable.$auth.api_key}`,
      },
      params: {
        //Replace the query below with your own
        query: `query { organization { projects(first: 10) { pageInfo { hasNextPage } edges {
             node { name posts(last: 10) { edges { node { title permalink } } } } } } } }`,
      },
    })
  },
})

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Traffic-Based Workflow in Pipedream
Building a Traffic-Based Workflow in Pipedream
Normally I don't like to blog about stuff that isn't generally available to all, but as it will be available sometime soon, I decided to go ahead anyway. And I built something really cool I want to share so that's another reason to talk about this now!