YouCanBook.Me

Online scheduling tool for customer bookings. Automatically create unique virtual meeting links for meetings scheduled through YouCanBook.me. Custom availability and control. Set up custom availability, padding between appointments and appointment duration.

Integrate the YouCanBook.Me API with the Formatting API

Setup the YouCanBook.Me API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate YouCanBook.Me and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Booking from YouCanBook.Me API
YouCanBook.Me + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Cancelled Booking from YouCanBook.Me API
YouCanBook.Me + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Booking from YouCanBook.Me API
YouCanBook.Me + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Cancelled Booking from YouCanBook.Me API
YouCanBook.Me + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Booking from YouCanBook.Me API
YouCanBook.Me + Formatting
 
Try it
New Booking from the YouCanBook.Me API

Emit new event for each new booking

 
Try it
New Cancelled Booking from the YouCanBook.Me API

Emit new event when a booking is cancelled

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of YouCanBook.Me

The YouCanBook.Me API allows for automating appointment scheduling by integrating with your calendar. It can trigger actions when new bookings are made, modified, or canceled. Building on Pipedream's platform enables developers to create robust workflows that can interact with other services. For example, you can confirm appointments, sync with other calendars, send custom emails, or update CRM records based on booking activities.

Connect YouCanBook.Me

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    youcanbook_me: {
      type: "app",
      app: "youcanbook_me",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.youcanbook.me/v1/${this.youcanbook_me.$auth.account_id}/profiles`,
      auth: {
        username: `${this.youcanbook_me.$auth.username}`,
        password: `${this.youcanbook_me.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})