AI powered modern phone app.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
krispcall: {
type: "app",
app: "krispcall",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://automationapi.krispcall.com/api/v1/platform/pipedream/me`,
headers: {
"X-API-Key": `${this.krispcall.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})