Free Online Appointment Scheduling Software
With the Calendly API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
calendly: {
type: "app",
app: "calendly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://calendly.com/api/v1/users/me`,
headers: {
"X-TOKEN": `${this.calendly.$auth.api_key}`,
},
})
},
})
Some examples of things you can build using the Google Sheets API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_sheets: {
type: "app",
app: "google_sheets",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_sheets.$auth.oauth_access_token}`,
},
})
},
})