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
Emit new event for each new record in table. See the documentation
Emit new event for each new record in a view. See the documentation
Emit new event for each update in table. See the documentation
This action gets a row by row Id. See the documentation
This action lists all rows in a table. See the documentation
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`,
},
})
},
})
The NoCodeB (NocoDB) API transforms your databases into a smart Excel sheet, providing a platform for managing your data with the ease of a spreadsheet interface. When combined with Pipedream's capabilities, this API allows you to automate data operations, sync with other databases or apps, and streamline workflows without writing complex code. Using Pipedream, you can trigger events based on changes in your NocoDB, process and manipulate the data, and connect to countless apps to extend functionality, such as sending notifications, updating CRMs, or generating reports.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nocodb: {
type: "app",
app: "nocodb",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.nocodb.$auth.domain}/api/v1/db/meta/nocodb/info`,
headers: {
"accept": `application/json`,
"xc-token": `${this.nocodb.$auth.api_key}`,
},
})
},
})