> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# YouCanBookMe

> Integrate your application with the YouCanBookMe API

## 🚀 Quickstart

Connect to YouCanBookMe with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *YouCanBookMe*.
  </Step>

  <Step title="Authorize YouCanBookMe">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your YouCanBookMe API key and booking page subdomain. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the YouCanBookMe API">
    Let's make your first request to the YouCanBookMe API (list booking pages). Replace the placeholders below with your [Environment API key](/docs/reference/backend/http-api/api-keys), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/v1/profiles" \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ apiKey: '<NANGO-API-KEY>' });

        const res = await nango.get({
            endpoint: '/v1/profiles',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/docs/guides/primitives/auth) to integrate Nango in your app.
  </Step>
</Steps>

## 📚 YouCanBookMe Integration Guides

Nango maintained guides for common use cases.

* [How do I link my YouCanBookMe account?](/docs/api-integrations/youcanbook-me/connect)\
  Learn how to find your API key and booking page subdomain and authenticate with YouCanBookMe

Official docs: [YouCanBookMe API docs](https://developer.youcanbook.me/)

## 🧩 Pre-built syncs & actions for YouCanBookMe

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name    | Description                                                                                                                                                                             | Type                                           | Source code                                                                                                                  |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| `create-booking` | Directly create a confirmed booking against a profile                                                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/create-booking.ts) |
| `create-profile` | Create a new booking-page profile.                                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/create-profile.ts) |
| `delete-booking` | Cancel/remove a booking.                                                                                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/delete-booking.ts) |
| `get-booking`    | Get a single booking by id.                                                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/get-booking.ts)    |
| `get-profile`    | Get full configuration for a single booking-page profile — intake form questions, team members, appointment types, working hours, payments, cancellation policy, and automated actions. | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/get-profile.ts)    |
| `list-profiles`  | List booking-page profiles on this account.                                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/list-profiles.ts)  |
| `update-booking` | Update or reschedule a booking.                                                                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/update-booking.ts) |
| `update-profile` | Update a booking-page profile's configuration.                                                                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/actions/update-profile.ts) |
| `profiles`       | Sync booking-page profiles on this account.                                                                                                                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/youcanbook-me/syncs/profiles.ts)         |

***
