Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.
Go to siteThe 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 } } } } } } } }`,
},
})
},
})
Automated Release Notes Distribution: When a new notice is published on Noticeable, trigger a Pipedream workflow to distribute the update across multiple channels. The workflow could post the release notes to Slack for internal team notification, send an email to subscribers via SendGrid, and tweet the update on Twitter for broader reach.
User Feedback Gathering: After an update is announced on Noticeable, use Pipedream to automate the collection of user feedback. Set up a workflow that sends a Typeform survey to gather user impressions and automatically store the responses in a Google Sheet for easy analysis and follow-up.
Project Management Sync: Integrate Noticeable with project management tools like Trello or Asana. Every time a new update is posted on Noticeable, a Pipedream workflow can create a new card or task in your project management tool, ensuring that your development team is always aligned with the latest updates and priorities.
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 events when a new publication deleted. See the docs
Emit new events when a new publication is updated. See the docs
Noticeable uses API keys for authentication. When you connect your Noticeable account, Pipedream securely stores the keys so you can easily authenticate to Noticeable APIs in both code and no-code steps.
To communicate with the Noticeable.io's GraphQL server, you'll need an API Key.