with Aidbase and Security Reporter?
Emit new event when an assessment is created.
Emit new event when a new knowledge item is added to a chatbot.
Emit new event when a finding is created.
Emit new event when a new knowledge item is added to an email inbox.
Emit new event when a finding is updated.
Add a new question to a FAQ in Airbase. See the documentation
Creates a new security assessment. See the documentation
Add a video as a piece of knowledge to your Aidbase account. See the documentation
Creates a new security finding. See the documentation
Create a new frequently asked questions (FAQ) list on your Aidbase account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aidbase: {
type: "app",
app: "aidbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aidbase.ai/v1/status`,
headers: {
Authorization: `Bearer ${this.aidbase.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
security_reporter: {
type: "app",
app: "security_reporter",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.security_reporter.$auth.base_url}/api/v1/users/me`,
headers: {
Authorization: `Bearer ${this.security_reporter.$auth.api_token}`,
"Content-Type": `application/json`,
"Accept": `application/json`,
},
})
},
})