Retail POS Software
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Vend API, you can streamline your customer experience and build
customer loyalty by leveraging customer data, product information and stock
control.
The Vend API can help you create custom checkout experiences for customers that
improve the convenience and speed of their shopping experience. For example,
you can integrate your store’s website with the Vend API to enable customers
the ability to purchase goods directly from your website. You can also power
loyalty programs through the Vend API, allowing customers to earn and redeem
rewards points on purchases.
In addition to connecting customers to your store, the Vend API can also be
used to help streamline product management and stock control. You can use the
Vend API to provide customers information about product availability, pricing,
and delivery options as well as helping you manage stock levels and reordering.
The opportunities are endless with Vend API, here are some examples of products
you can create:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vend: {
type: "app",
app: "vend",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.vend.$auth.domain_prefix}.vendhq.com/api/2.0/security_events`,
headers: {
Authorization: `Bearer ${this.vend.$auth.oauth_access_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})