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 SWAPI - Star Wars API

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

Get Film with SWAPI - Star Wars API on New Email Subscription Created Event from Noticeable API
Noticeable + SWAPI - Star Wars
 
Try it
Get Film with SWAPI - Star Wars API on New Email Subscription Deleted Event from Noticeable API
Noticeable + SWAPI - Star Wars
 
Try it
Get Film with SWAPI - Star Wars API on New Publication Created Event from Noticeable API
Noticeable + SWAPI - Star Wars
 
Try it
Get Film with SWAPI - Star Wars API on New Publication Deleted Event from Noticeable API
Noticeable + SWAPI - Star Wars
 
Try it
Get Film with SWAPI - Star Wars API on New Publication Updated Event from Noticeable API
Noticeable + SWAPI - Star Wars
 
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
Get Film with the SWAPI - Star Wars API

Get a film

 
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

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 SWAPI - Star Wars

The SWAPI (Star Wars API) provides a wealth of data about the Star Wars
universe to build applications. With the SWAPI, developers can access detailed
Star Wars related data about people, planets, films, species and much more.
From web and mobile applications to data analysis, the possibilities are
limitless.

Here are a few examples of what developers can build using the SWAPI:

  • Create a Star Wars encyclopedia to document the Star Wars universe and its
    characters.
  • Design a custom interactive map to explore the planets of the Star Wars
    universe.
  • Analyze the data to uncover patterns and insights about Star Wars films,
    characters, and species.
  • Design a search engine to query Star Wars related data.
  • Create a mobile app that displays information about the characters, films and
    species in the Star Wars universe.
  • Design a live score system specialized in providing stats related to the Star
    Wars films and characters.

Connect SWAPI - Star Wars

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    swapi: {
      type: "app",
      app: "swapi",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://swapi.dev/api/films/1/`,
    })
  },
})