with The Official Board and E-conomic?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
the_official_board: {
type: "app",
app: "the_official_board",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.theofficialboard.com/rest/test/token`,
headers: {
"accept": `application/json`,
"token": `${this.the_official_board.$auth.api_token}`,
},
})
},
})
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`,
},
})
},
})