Noticeable

Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.

Integrate the Noticeable API with the Data Stores API

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

Add or update a single record with Data Stores API on New Email Subscription Created Event from Noticeable API
Noticeable + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Email Subscription Deleted Event from Noticeable API
Noticeable + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Publication Created Event from Noticeable API
Noticeable + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Publication Deleted Event from Noticeable API
Noticeable + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Publication Updated Event from Noticeable API
Noticeable + Data Stores
 
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
New Publication Deleted Event from the Noticeable API

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

 
Try it
New Publication Updated Event from the Noticeable API

Emit new events when a new publication is updated. See the docs

 
Try it
Create Email Subscription with the Noticeable API

Creates an email subscription, See the docs

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Create Publication with the Noticeable API

Creates a publication, See the docs

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Delete Email Subscription with the Noticeable API

Deletes an email subscription, See the docs

 
Try it

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 } } } } } } } }`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})