Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.
Emit new events when a new email subscription created. See the docs
Emit new events when an email subscription is deleted. See the docs
Emit new events when a new publication created. See the docs
Emit new event when a new column is added to a table. See the documentation
Emit new events when a new publication deleted. See the docs
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.
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 } } } } } } } }`,
},
})
},
})
On Pipedream, you can leverage the PostgreSQL app to create workflows that automate database operations, synchronize data across platforms, and react to database events in real-time. Think handling new row entries, updating records from webhooks, or even compiling reports on a set schedule. Pipedream's serverless platform provides a powerful way to connect PostgreSQL with a variety of apps, enabling you to create tailored automation that fits your specific needs.
import postgresql from "@pipedream/postgresql"
export default defineComponent({
props: {
postgresql,
},
async run({ steps, $ }) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/postgresql
const queryObj = {
text: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.postgresql.executeQuery(queryObj);
},
})