Sell from existing websites, hosted stores, social media channels and more, with no technical skills required and 0% platform fees.
Creates a single-use scheduling link. See the documentation
Marks an Invitee as a No Show in Calendly. See the documentation.
Gets information about an Event associated with a URI. See the documentation.
The Shoprocket API empowers you to seamlessly integrate e-commerce capabilities into your website or app. With Pipedream, you can connect Shoprocket to hundreds of other services to automate tasks like syncing orders to a database, updating inventory in real-time, or triggering custom email campaigns when a new product is added. Pipedream's serverless platform allows for building custom workflows that can react to various Shoprocket events, manipulate the data, and interact with numerous APIs and services without the hassle of managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shoprocket: {
type: "app",
app: "shoprocket",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.shoprocket.io/v1/team`,
headers: {
"x-api-key": `${this.shoprocket.$auth.api_key}`,
},
})
},
})
The Calendly API lets you craft bespoke scheduling experiences within your apps or automate repetitive tasks involving your calendar. With this API, you can read event types, set up webhooks for new events, list invitees, or create and cancel invitation links programmatically. Pipedream's serverless platform takes the heavy lifting out of integrating Calendly with hundreds of other apps, enabling you to focus on creating workflows that save time, enhance productivity, and eliminate scheduling errors.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
calendly_v2: {
type: "app",
app: "calendly_v2",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.calendly.com/users/me`,
headers: {
Authorization: `Bearer ${this.calendly_v2.$auth.oauth_access_token}`,
},
})
},
})