> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# BookingSourceDetailsGql

GraphQL object

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/objects/booking-source-details-gql

## Fields

- `externalId` — Unique identifier for the booking source connection.
- `name` — Name of the booking source.
- `description` — Description of the booking source or its purpose.
- `bookingSource` — Vendor or platform providing the booking source.
- `integrationProfileId` — Integration profile id.
- `isEnabled` — Is this the booking source enabled.
- `isPrimary` — Is this the primary booking source.

## Definition

```graphql
type BookingSourceDetailsGql {
  externalId: String
  name: String
  description: String
  bookingSource: BookingIntegrationSource
  integrationProfileId: UUID
  isEnabled: Boolean
  isPrimary: Boolean
}
```