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 Schedule API

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

Create Email Subscription with Noticeable API on Custom Interval from Schedule API
Schedule + Noticeable
 
Try it
Create Email Subscription with Noticeable API on Daily schedule from Schedule API
Schedule + Noticeable
 
Try it
Create Email Subscription with Noticeable API on Monthly Schedule from Schedule API
Schedule + Noticeable
 
Try it
Create Email Subscription with Noticeable API on Weekly schedule from Schedule API
Schedule + Noticeable
 
Try it
Create Publication with Noticeable API on Custom Interval from Schedule API
Schedule + Noticeable
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
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
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
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
Delete Email Subscription with the Noticeable API

Deletes an email subscription, See the docs

 
Try it
Search Email Subscriptions with the Noticeable API

Searches email subscriptions for the given options. If no options given, retrieves all subscriptions, See the docs

 
Try it
Update Email Subscription with the Noticeable API

Updates 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 Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.