E-conomic, by Visma, is an online accounting software application that promises a simplicity and level of intuitiveness suitable for use by small and medium-sized organizations of any kind.
Emit new event when you add or modify a new row in a table. See the docs here
Emit new event when new rows are returned from a custom query. See the docs here
Emit new event when a new table is added to a database. See the docs here
The E-conomic API allows for the automation of accounting tasks, enabling seamless integration of financial data into custom workflows. With Pipedream's capability to connect to the E-conomic API, you can trigger actions based on invoice creation, update financial records in real-time, and sync data across various business tools. By harnessing this API, businesses can streamline their financial processes, reduce manual data entry, and gain clearer insights into their financial health.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
e_conomic: {
type: "app",
app: "e_conomic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://restapi.e-conomic.com/self`,
headers: {
"X-AppSecretToken": `${this.e_conomic.$auth.app_secret_token}`,
"X-AgreementGrantToken": `${this.e_conomic.$auth.agreement_grant_token}`,
"Content-Type": `application/json`,
},
})
},
})
The MySQL application on Pipedream enables direct interaction with your MySQL databases, allowing you to perform CRUD operations—create, read, update, delete—on your data with ease. You can leverage these capabilities to automate data synchronization, report generation, and event-based triggers that kick off workflows in other apps. With Pipedream's serverless platform, you can connect MySQL to hundreds of other services without managing infrastructure, crafting complex code, or handling authentication.
import mysql from '@pipedream/mysql';
export default defineComponent({
props: {
mysql,
},
async run({steps, $}) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/mysql
const queryObj = {
sql: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.mysql.executeQuery(queryObj);
},
});