Setmore offers a free, online scheduling platform for you to connect with your customers.
Go to siteThe Setmore API opens doors to automating appointment scheduling and calendar management, allowing you to sync appointments, customer information, and services across different platforms. This seamless integration through Pipedream can trigger workflows from new appointments, update external CRMs with customer data, or prep team communication channels with upcoming schedule details. By harnessing the Setmore API on Pipedream, you're equipping yourself to orchestrate complex operations with simplicity and precision.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
setmoreappointments: {
type: "app",
app: "setmoreappointments",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://developer.setmore.com/api/v1/bookingapi/staffs`,
headers: {
Authorization: `Bearer ${this.setmoreappointments.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
Automatic Appointment Confirmation Emails: When a new appointment is scheduled in Setmore, use Pipedream to send a customized confirmation email to the customer. This can be done by integrating with email services like Sendgrid or Mailgun, providing immediate communication and enhanced customer experience.
Syncing Appointments to Google Calendar: Keep your Google Calendar in sync with Setmore appointments. Whenever a new appointment gets booked or an existing one is updated, Pipedream can automate the process of reflecting these changes in your Google Calendar, ensuring that your schedule is always up-to-date across platforms.
CRM Integration for New Customers: Integration with a CRM system like Salesforce or HubSpot can be automated when a new customer is added in Setmore. Pipedream can capture the customer details and push them to your CRM, maintaining a unified database for sales and support teams.
Create a new appointment in Setmore Appointments. See the documentation
Create a new customer in Setmore Appointments. See the documentation
Setmore uses OAuth authentication. When you connect your Setmore account, Pipedream will open a popup window where you can sign into Setmore and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Setmore API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://developer.setmore.com/api/v1/o/oauth2/token
?
refreshToken={{custom_fields.refresh_token}}
accept: application/json
GET
https://developer.setmore.com/api/v1/o/oauth2/token
?
refreshToken={{custom_fields.refresh_token}}
accept: application/json