Simple Customer Service Software and Education
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
What can you build with the Help Scout API?
Help Scout is a customer service platform that enables companies to deliver
great customer service. With the Help Scout API, you can extend the
functionality of Help Scout in a variety of ways.
Here are a few examples of what you can build with the Help Scout API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
help_scout: {
type: "app",
app: "help_scout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.helpscout.net/v2/users/me`,
headers: {
Authorization: `Bearer ${auths.helpscout.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
},
})