One-stop money management software for your small business.
Wave is a financial software that simplifies accounting, invoicing, and receipt scanning for small businesses. With the Wave API, you can automate various financial tasks directly within Pipedream. You can create invoices, manage customers, process payments, and extract financial reports. Integrating Wave with Pipedream allows you to connect your accounting workflow with other apps, triggering actions based on financial events or scheduling regular financial operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wave: {
type: "app",
app: "wave",
}
},
async run({steps, $}) {
const data = {
"query": `{
user {
id
defaultEmail
}
}`,
}
return await axios($, {
method: "post",
url: `https://gql.waveapps.com/graphql/public`,
headers: {
Authorization: `Bearer ${this.wave.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})
The Moxie API provides tools to facilitate customer engagement through chat and messaging services. With this API, you can integrate real-time chat capabilities, manage conversations, and leverage customer data to provide personalized support. On Pipedream, you can use the Moxie API to create automated workflows that respond to events in Moxie, such as new messages or chat engagements, and connect them with other services to enhance customer support, automate responses, and streamline communication processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
moxie: {
type: "app",
app: "moxie",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.moxie.$auth.base_url}action/clients/list`,
headers: {
"X-API-KEY": `${this.moxie.$auth.api_key}`,
},
})
},
})