with ScrapeCreators and Zoho Bookings?
Emit new event when a new profile is updated. See the documentation
Fetch a creator profile based on platform and handle or unique ID. See the documentation
Book an appointment for a customer for a desired service. See the documentation
Fetch availability of appointments across services. See the documentation
Search for creators based on platform and query. See the documentation
Get details of an appointment See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapecreators: {
type: "app",
app: "scrapecreators",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapecreators.com/v1/twitter/profile`,
headers: {
"x-api-key": `${this.scrapecreators.$auth.api_key}`,
},
params: {
handle: `pipedreamhq`,
},
})
},
})
The Zoho Bookings API lets you integrate your booking system with other apps and services, automating tasks like scheduling, rescheduling, and cancelling appointments. On Pipedream, you can use this API to trigger workflows, process booking data, synchronize schedules across platforms, and create custom notifications. It's a powerful tool for service-based businesses looking to streamline their operations and enhance customer interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_bookings: {
type: "app",
app: "zoho_bookings",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_bookings.$auth.api_domain}/bookings/v1/json/workspaces`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_bookings.$auth.oauth_access_token}`,
},
})
},
})