Cloud accounting platform that provides you with real-time data and accurate insights.
Retrieves a detailed set of information about a particular client. See the documentation
Retrieves the rolling annual and monthly-average Activity Stats for a particular client. See the documentation
The Dext API allows you to automate the management of expenses, receipts, and invoices within your Dext account. With Pipedream, you can harness this API to create workflows that streamline your finance operations, such as extracting data from receipts, categorizing expenses, and syncing financial documents across various platforms. By connecting Dext with other apps through Pipedream, you can craft efficient, serverless workflows that save time and reduce manual data entry.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dext: {
type: "app",
app: "dext",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xavier-analytics.com/clients`,
headers: {
Authorization: `Bearer ${this.dext.$auth.api_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})