import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wuf: {
type: "app",
app: "wuf",
}
},
async run({steps, $}) {
const data = {
"apiKey": `${this.wuf.$auth.api_key}`,
"userKey": `${this.wuf.$auth.user_key}`,
"title": `New report`,
"body": `Read the latest news.`,
"url": `https://mysite.com/report-2023`,
}
return await axios($, {
method: "post",
url: `https://api.usewuf.com/v1/push`,
data,
})
},
})
Wuf uses API keys for authentication. When you connect your Wuf account, Pipedream securely stores the keys so you can easily authenticate to Wuf APIs in both code and no-code steps.