You Can Book Me

Save time & increase productivity with friction-free online bookings.

Go to site
Explore
/
Apps
/
You Can Book Me

You Can Book Me API Integrations

Build and run workflows using the You Can Book Me API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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: {
    you_can_book_me: {
      type: "app",
      app: "you_can_book_me",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.youcanbook.me/v1/${this.you_can_book_me.$auth.account_id}/remoteaccounts`,
      auth: {
        username: `${this.you_can_book_me.$auth.email}`,
        password: `${this.you_can_book_me.$auth.api_key}`,
      },
    })
  },
})

Authentication

You Can Book Me uses API keys for authentication. When you connect your You Can Book Me account, Pipedream securely stores the keys so you can easily authenticate to You Can Book Me APIs in both code and no-code steps.

To retrieve your Account ID and API Key,

  • Navigate to your You Can Book Me account and sign in
  • Go to “Account” > “Password & Security”

You Can Book Me requires their users enter their You Can Book Me email in order to connect to their API. For more info, refer to You Can Book Me’s documentation.