Simplify information sharing, boost exchanges and streamline collaborative among your teams.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
talkspirit: {
type: "app",
app: "talkspirit",
}
},
async run({steps, $}) {
const data = {
"title": `{your_title}`,
"content": `{your_content}`,
"url": `{your_url}`,
}
return await axios($, {
method: "post",
url: `https://webhook.talkspirit.com/v1/incoming/${this.talkspirit.$auth.api_key}`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
talkSpirit uses API keys for authentication. When you connect your talkSpirit account, Pipedream securely stores the keys so you can easily authenticate to talkSpirit APIs in both code and no-code steps.
To retrieve your API keys,
Your API key is 1234
if your Incoming webhook URL is https://webhook.talkspirit.com/v1/incoming/1234