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}`,
},
})
},
})
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:
GET
https://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}}
POST
https://{{custom_fields.domain_prefix}}.vendhq.com/api/1.0/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://{{custom_fields.domain_prefix}}.vendhq.com/api/1.0/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}