krisp.getProfile retrieves the identity behind the connected read-scoped key.
automations/get-krisp-profile.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieves the user and workspace represented by a Krisp API key.
krisp.getProfile retrieves the identity behind the connected read-scoped key.
import { automation, markSignificant, onDashboardRun } from "automate.ax"
import { krisp } from "automate.ax/krisp"
export default automation("Get Krisp profile", () => {
onDashboardRun({ title: "Get Krisp profile" })
markSignificant(krisp.getProfile({}))
})