with Fakturoid and Enrow?
Cancels an existing invoice or revokes previous cancellation. See the documentation
Executes a single email search using Enrow email finder. See the documentation
Retrieve a result from a single search executed via email finder function. See the documentation
Executes payment for an invoice or removes an already applied payment. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fakturoid: {
type: "app",
app: "fakturoid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.fakturoid.cz/api/v3/user.json`,
headers: {
Authorization: `Bearer ${this.fakturoid.$auth.oauth_access_token}`,
},
})
},
})
The Enrow API offers the power to automate and enhance your e-commerce operations with features like product catalog management, order processing, and customer interactions. By leveraging the Enrow API on Pipedream, you can create custom workflows that trigger actions based on specific events, integrate with other services for a seamless back-end process, and manipulate data to fit your business needs. With Pipedream's serverless platform, you can execute complex sequences of tasks with minimal setup, tapping into the vast library of pre-built actions or writing your own code steps in Node.js.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enrow: {
type: "app",
app: "enrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enrow.io/account/info`,
headers: {
"x-api-key": `${this.enrow.$auth.api_key}`,
},
})
},
})