import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
spamcheck_ai: {
type: "app",
app: "spamcheck_ai",
}
},
async run({steps, $}) {
const data = {
"ip": "48.43.57.145",
"email": "john.smith@fabrikam.com",
"body": {},
"result": true,
"desired_outcome": true,
"notes": "Spam report"
}
return await axios($, {
method: "post",
url: `https://api.spamcheck.ai/api/v1/spam_reports`,
headers: {
"accept": `application/json`,
"Api-Key": `${this.spamcheck_ai.$auth.api_key}`,
},
data,
})
},
})
SpamCheck.ai uses API keys for authentication. When you connect your SpamCheck.ai account, Pipedream securely stores the keys so you can easily authenticate to SpamCheck.ai APIs in both code and no-code steps.