AnnounceKit helps companies communicate product updates and news to their customers, increase feature adoption and build customer trust.
Go to siteAnnounceKit is a tool for creating, managing, and publishing announcements to keep your users informed about product updates and news. Using the AnnounceKit API within Pipedream, you can automate the delivery of these updates across different platforms, sync release notes with your product's lifecycle events, or control the flow of communication based on user behavior or preferences. This level of automation can enhance user engagement and ensure timely updates without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
announcekit: {
type: "app",
app: "announcekit",
}
},
async run({steps, $}) {
const data = {
"query": `{
me {
active_project {
id
name
}
}
}`,
}
return await axios($, {
method: "post",
url: `https://announcekit.app/gq/v2`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.announcekit.$auth.email}`,
password: `${this.announcekit.$auth.password}`,
},
data,
})
},
})
Sync New Blog Posts with Announcements: Whenever a new blog post is published in WordPress, the AnnounceKit API can automatically create a corresponding announcement in Pipedream. This keeps your users informed about the latest news as part of your regular content strategy.
Release Note Updates On Product Changes: Tie in your CI/CD pipeline (e.g., GitHub Actions) with AnnounceKit through Pipedream. When a new version of your product is released, you can automatically generate and publish detailed release notes to your user base.
User Feedback Triggered Announcements: Connect AnnounceKit to a customer support tool like Zendesk using Pipedream. When multiple users report a similar issue or request, trigger a new announcement that informs users about the upcoming fix or feature, enhancing transparency and trust.
AnnounceKit uses API keys for authentication. When you connect your AnnounceKit account, Pipedream securely stores the keys so you can easily authenticate to AnnounceKit APIs in both code and no-code steps.
AnnounceKit requires their users enter their AnnounceKit email and password in order to connect to their API. For more info, refer to AnnounceKit’s documentation.
Pipedream recommends using a strong and unique password for your AnnounceKit account.