Don't keep your leads waiting. Capture, qualify, and engage with inbound leads in minutes, not days.
Emit new event when a booking is canceled. See the docs
Emit new event when a customer cancels a booking and then reschedules on a different booking page. See the docs
Emit new event when the status of a booking is changed. See the docs
Emit new event when a user sets the completed booking to No-show. See the docs
Emit new event when a booking is rescheduled. See the docs
Adds an existing contact to an existing campaign. See the documentation
Adds an existing lead to an existing campaign. See the documentation
Converts a SOAP XML Object received from Salesforce to JSON
Creates an Attachment on a parent object. See the documentation
The OnceHub API is a powerful tool for automating the scheduling of meetings and appointments. With this API, you can dynamically manage bookings, sync calendars, personalize notifications, and streamline the entire process of setting up and following up on appointments. When used on Pipedream, you can harness the serverless power of the platform to trigger workflows based on events in OnceHub, or to act upon data from other services, making the maintenance of your calendar and scheduling needs a breeze.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
oncehub: {
type: "app",
app: "oncehub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.oncehub.com/v2/test`,
headers: {
"Accept": `application/json`,
"API-Key": `${this.oncehub.$auth.api_key}`,
},
})
},
})
The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesforce_rest_api: {
type: "app",
app: "salesforce_rest_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`,
headers: {
Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`,
},
})
},
})