The KnowBe4 API offers a platform for automating and managing the various aspects of a security awareness training program. By tapping into KnowBe4's API on Pipedream, you can streamline user management, phishing simulations, and training campaigns, integrating these into broader IT processes or alerting systems. Tailoring automations can lead to improved response times, comprehensive reporting, and enhanced overall security education within an organization.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
knowbe4: {
type: "app",
app: "knowbe4",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.knowbe4.$auth.server_location}.api.knowbe4.com/v1/account`,
headers: {
Authorization: `Bearer ${this.knowbe4.$auth.api_key}`,
},
})
},
})
Automated User Provisioning: Sync new hires from an HR system into KnowBe4 to automatically enroll them in security awareness training. When a new employee is added to your HR system, trigger a Pipedream workflow that adds the user to KnowBe4 and assigns relevant training modules based on their role.
Phishing Simulation Analysis: Connect KnowBe4 with a data visualization tool like Google Sheets or Tableau. Use Pipedream to collect results from phishing simulation campaigns, process the data, and push insights into a dashboard for easy analysis and monitoring of employee susceptibility trends over time.
Real-Time Alerting for Training Completion: Set up a monitoring system on Pipedream that watches for training completions in KnowBe4. When an employee finishes their assigned training modules, trigger a notification through Slack, email, or SMS to their manager or the security team, ensuring compliance and keeping track of the organization’s security training progress.
KnowBe4 uses API keys for authentication. When you connect your KnowBe4 account, Pipedream securely stores the keys so you can easily authenticate to KnowBe4 APIs in both code and no-code steps.
Authenticate your account by including your secret API key in the request. You can access your API key and generate a new key if needed in your KnowBe4 Account Settings under the API section.
KnowBe4 supports both a US
and EU
server.