What do you want to automate

with Mux and Noticeable?

Prompt, edit and deploy AI agents that connect to Mux, Noticeable 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 Asset Track with Mux API on New Email Subscription Created Event from Noticeable API
Noticeable + Mux
 
Try it
Create Asset Track with Mux API on New Email Subscription Deleted Event from Noticeable API
Noticeable + Mux
 
Try it
Create Asset Track with Mux API on New Publication Created Event from Noticeable API
Noticeable + Mux
 
Try it
Create Asset Track with Mux API on New Publication Deleted Event from Noticeable API
Noticeable + Mux
 
Try it
Create Asset Track with Mux API on New Publication Updated Event from Noticeable API
Noticeable + Mux
 
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 Live Stream Active from the Mux API

Emit new event when a live-stream is set to active status.

 
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 Video Asset Ready from the Mux API

Emit new event when a video asset is set to ready status.

 
Try it
New Publication Created Event from the Noticeable API

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

 
Try it
Create Asset with the Mux API

Create a new asset with a track. See the documentation

 
Try it
Create Email Subscription with the Noticeable API

Creates an email subscription, See the docs

 
Try it
Create Asset Track with the Mux API

Adds an asset track (for example, subtitles) to an asset. See the documentation

 
Try it
Create Publication with the Noticeable API

Creates a publication, See the docs

 
Try it
Get Asset with the Mux API

Retrieves an asset. See the documentation

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

Overview of Mux

Mux is a powerful API that simplifies the process of working with video and audio data. By leveraging Mux on Pipedream, you unlock the potential to automate video and audio streaming workflows, analyze media performance, and integrate seamlessly with other services to enrich your media content strategy. With Mux's ability to manage video assets, including uploading, encoding, and delivering content across devices, combined with Pipedream's serverless execution model, you can create dynamic, scalable, and highly customized media operations.

Connect Mux

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mux: {
      type: "app",
      app: "mux",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.mux.com/video/v1/assets`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: `${this.mux.$auth.access_key}`,
        password: `${this.mux.$auth.secret_key}`,
      },
    })
  },
})

Overview of Noticeable

The Noticeable API on Pipedream allows you to automate the management of your project's news and updates efficiently. By integrating Noticeable with Pipedream, you can trigger workflows based on new publications, update timelines, and synchronize content across various platforms. This can help keep your users or team informed about the latest changes, releases or announcements with minimal manual intervention.

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

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