> 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.

# LocationInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/inputs/location-input

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `companyId`
- `departmentId`
- `name`
- `description`
- `geoLocation`
- `businessStatus`
- `locationType`
- `reviewSources`
- `organizationNumber`
- `externalId`
- `departments`
- `departmentIds`
- `groups`
- `externalLocationIds`
- `integrationProfileIds`
- `summary` — Summary of reviews.
- `externalIdMapping` — External id mapping.
- `websiteUrl` — Website url.
- `websiteName` — Website name.
- `phone` — Primary phone number.
- `email` — Primary email.
- `logoUrl` — Logo url.

## Definition

```graphql
input LocationInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  companyId: UUID
  departmentId: UUID
  name: String
  description: String
  geoLocation: GeoLocationInput
  businessStatus: BusinessStatus
  locationType: [LocationType]
  reviewSources: [ReviewSourceDetailsInput]
  organizationNumber: String
  externalId: String
  departments: [String]
  departmentIds: [String]
  groups: String
  externalLocationIds: [String]
  integrationProfileIds: [String]
  summary: ReviewSummaryInput
  externalIdMapping: [ExternalMappingModelInput]
  websiteUrl: String
  websiteName: String
  phone: String
  email: String
  logoUrl: String
}
```