with Logistia Route Planner and E-conomic?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
logistia_route_planner: {
type: "app",
app: "logistia_route_planner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://integration.logistia.app/v1/order`,
headers: {
"L-API-KEY": `${this.logistia_route_planner.$auth.api_key}`,
},
params: {
orderNo: `test-order`,
},
})
},
})
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`,
},
})
},
})