with Pembee and 21RISK?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pembee: {
type: "app",
app: "pembee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://webhooks.pembee.app/api/zapier/users`,
headers: {
Authorization: `Bearer ${this.pembee.$auth.api_key}`,
},
params: {
account_name: `${this.pembee.$auth.account_name}`,
},
})
},
})
The 21RISK API provides functionalities to manage and monitor risk within organizations. Leveraging Pipedream's integration capabilities allows for automated workflows that can streamline risk management processes, trigger alerts, and synchronize risk data across various business tools. This API is particularly useful for organizations looking to automate their risk assessment and mitigation strategies effectively.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_21risk: {
type: "app",
app: "_21risk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.21risk.com/odata/v5/organizations`,
headers: {
Authorization: `Bearer ${this._21risk.$auth.api_key}`,
},
})
},
})