with n8n.io and Fathom?
Emit new event when a new recording is created. See the documentation
Get the transcript of a recording. See the documentation
The n8n.io API provides a platform for automating workflows in a node-based structure that allows for integrations across various services and apps. Leveraging this API within Pipedream enables you to orchestrate complex operations, connect disparate systems, and trigger actions conditionally, transforming and passing data between services without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
n8n_io: {
type: "app",
app: "n8n_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.n8n_io.$auth.domain}.app.n8n.cloud/api/v1/workflows`,
headers: {
"Accept": `application/json`,
"X-N8N-API-KEY": `${this.n8n_io.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})