Cloud business software for SMEs and their accountants
Emit new event each time a new account is created. See the docs
Emit new event each time a new contact is created. See the docs
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
The Exact API provides a suite of endpoints for interacting with Exact's cloud-based financial software, which includes tools for accounting, CRM, and ERP functionalities. By leveraging this API on Pipedream, you can automate data flows across various business functions, sync financial records, manage customer relationships, and streamline operational processes. Pipedream's serverless execution model allows for crafting intricate workflows that respond in real-time to events, schedule operations, and connect with countless other apps to extend the functionality of Exact's ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
exact: {
type: "app",
app: "exact",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://start.exactonline.${this.exact.$auth.region}/api/v1/current/Me?$select=UserID,Email`,
headers: {
Authorization: `Bearer ${this.exact.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
params: {
"$select": `UserID,Email`,
},
})
},
})
# $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