Shared Inbox that allows teams to answer all customer queries across multiple channels from a single place in less time.
The Helpwise API enables you to build a variety of different applications that
can help you manage your customer interactions more effectively. Some examples
of applications that you can build using the Helpwise API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
helpwise: {
type: "app",
app: "helpwise",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.helpwise.io/dev-apis/users/me`,
headers: {
"Accept": `application/json`,
"Accept-Encoding": `gzip, deflate`,
"Authorization": `${this.helpwise.$auth.api_key}:${this.helpwise.$auth.api_secret}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})