The External Attack Surface Management platform powered by elite ethical hackers.
Emit new event when a severe security finding at high risk level is detected.
Emit new event when a moderate security finding at a medium risk level is recognized.
Emit new event as soon as a new security scan on the entered domain commences
Emit new event each time the specified coupon event(s) occur
Emit new event each time the specified customer event(s) occur
The Detectify API provides a powerful interface for automating and integrating continuous web application security testing into your development cycle. With this API, you can programmatically start scans, fetch scan profiles, retrieve findings, and manage your Detectify domain assets. When leveraged through Pipedream, you can create serverless workflows that trigger actions in other apps based on the results from Detectify, ensuring timely responses to security threats and streamlining your DevSecOps processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
detectify: {
type: "app",
app: "detectify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.detectify.com/rest/v2/assets/`,
headers: {
"Content-Type": `application/json`,
"X-Detectify-Key": `${this.detectify.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})