with Wuf and Catch-all Verifier?
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,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
catch_all_verifier: {
type: "app",
app: "catch_all_verifier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.catchallverifier.com/api/v1/verify/single`,
headers: {
"authorization": `${this.catch_all_verifier.$auth.api_key}`,
"accept": `application/json`,
},
params: {
id: `${this.catch_all_verifier.$auth.single_verification_id}`,
},
})
},
})