Vend

Retail POS Software

Go to site

Vend API Integrations

Build and run workflows using the Vend API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • Custom checkout experiences
  • Loyalty programs
  • Product catalogs
  • Stock control
  • Reordering automation
  • Delivery options
  • Payment integration
  • Faster checkout process
  • Real-time product updates
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})
Send Message (Advanced) with Discord Webhook API on New Inventory Update from Vend API
Vend + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Inventory Update from Vend API
Vend + Google Sheets
 
Try it
Get Film with SWAPI - Star Wars API on New Inventory Update from Vend API
Vend + SWAPI - Star Wars
 
Try it
Delete Record with Airtable API on New Inventory Update from Vend API
Vend + Airtable
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Inventory Update from Vend API
Vend + HTTP / Webhook
 
Try it
New Inventory Update from the Vend API

Emit new event for each update on inventory. See docs here

 
Try it

Authentication

Vend uses OAuth authentication. When you connect your Vend account, Pipedream will open a popup window where you can sign into Vend and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Vend API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://secure.vendhq.com/connect?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://{{custom_fields.domain_prefix}}.vendhq.com/api/1.0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://{{custom_fields.domain_prefix}}.vendhq.com/api/1.0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}