Customer communication platform
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Sends a new message from a channel. It will create a new conversation. See the docs here.
With the Front API, you can build a variety of applications and integrations to
help you and your team manage your email inboxes. Here are a few examples of
what you can build:
These are just a few examples of what you can build with the Front API – the
possibilities are really only limited by your imagination!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
frontapp: {
type: "app",
app: "frontapp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api2.frontapp.com/me`,
headers: {
Authorization: `Bearer ${this.frontapp.$auth.oauth_access_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})