with cvr.dev and E-conomic?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cvr_dev: {
type: "app",
app: "cvr_dev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cvr.dev/api/test/apikey`,
headers: {
"Authorization": `${this.cvr_dev.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})