with Fathom and Formatting?
Emit new event when a new recording is created. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fathom: {
type: "app",
app: "fathom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fathom.ai/external/v1/teams`,
headers: {
Authorization: `Bearer ${this.fathom.$auth.oauth_access_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})