with Zenventory and Paystack?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenventory: {
type: "app",
app: "zenventory",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.zenventory.com/rest/inventory/items`,
auth: {
username: `${this.zenventory.$auth.api_key}`,
password: `${this.zenventory.$auth.api_secret}`,
},
})
},
})
Paystack is a payment gateway that allows businesses to accept payments online from customers. With the Paystack API, you can automate invoicing, verify transactions, manage customers, and more. On Pipedream, you can integrate Paystack with a multitude of other apps to build powerful workflows, such as syncing payment data with accounting software, triggering events based on transaction status, or automating customer outreach.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
paystack: {
type: "app",
app: "paystack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.paystack.co/customer`,
headers: {
Authorization: `Bearer ${this.paystack.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})