--- title: "HubSpot" --- ### Obtaining HubSpot Client ID and Secret Go to [HubSpot Developer](https://developer.hubspot.com/) and sign into your account, or create a new one. From the Developer account home page, go to "Manage apps". Click the "Create app" button located at the top right corner of the page. In the "App info" tab, fill in any information you want for your app. Navigate to the "Auth" tab to set up authentication for the app. Copy the Client ID and Client Secret and add them to your `.env` file under the fields: ``` HUBSPOT_CLIENT_ID HUBSPOT_CLIENT_SECRET ``` Set the Redirect URL for OAuth to: ``` /api/integrations/hubspot/callback ``` Replace `` with the URL where your application is hosted. In the "Scopes" section, select "Read" and "Write" for the scope called `crm.objects.contacts`. Click the "Save" button at the bottom of the page. You’re all set! Any booking in Cal.com will now be created as a meeting in HubSpot for your contacts.