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
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
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}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS