AnnounceKit helps companies communicate product updates and news to their customers, increase feature adoption and build customer trust.
Go to siteimport { 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,
})
},
})
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.