Uncover complex fraud patterns by going deeper and enrich data at scale by leveraging OSINT.
Emit new event each time the specified coupon event(s) occur
Emit new event each time the specified customer event(s) occur
Emit new event each time the specified order event(s) occur
Emit new event each time the specified product event(s) occur
Performs a risk analysis on a given email address and provides a risk score indicating if the email is disposable, risky, or safe. See the documentation
Conducts a risk assessment and digital lookup for a provided phone number. Returns a risk score indicating if the number is disposable, risky, or safe, along with carrier details, location, and potential social profiles. See the documentation
The Defastra API is a tool designed for automating and integrating your cybersecurity efforts. It offers features such as vulnerability scans, monitoring of dark web activities, and risk assessments. When combined with Pipedream’s capabilities, you can create powerful, automated workflows to enhance your security posture. You can trigger events in real-time, process data, and connect to numerous other services, all of which help in proactively managing cybersecurity threats.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
defastra: {
type: "app",
app: "defastra",
}
},
async run({steps, $}) {
const data = {
"email": `sergio@pipekit.pro`,
}
return await axios($, {
method: "post",
url: `https://api.defastra.com/deep_email_check`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
"X-API-KEY": `${this.defastra.$auth.api_key}`,
},
data,
})
},
})
WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woocommerce: {
type: "app",
app: "woocommerce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.woocommerce.$auth.url}/wp-json/wc/v2/orders`,
auth: {
username: `${this.woocommerce.$auth.key}`,
password: `${this.woocommerce.$auth.secret}`,
},
})
},
})