> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: getConnection(connectionId: string) # Method package: wixBookingsV2 # Method menu location: wixBookingsV2 --> externalCalendars --> getConnection # Method Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/external-calendars/get-connection.md # Method Description: Retrieves an external calendar connection by ID. The external calendar connection contains details of the connection between a Wix site's calendar and calendars hosted by an external provider. The `syncConfig` property contains configuration details for importing events from an external calendar, exporting events to an external calendar, or both. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get an external calendar connection by ID ```javascript import {externalCalendars} from 'wix-bookings.v2'; async function getConnection(connectionId) { const {connection} = await externalCalendars.getConnection(connectionId) return connection } ``` ---