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

# Location

GraphQL object

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

## Fields

- `id` — Unique id (UUID).
- `documentType` — Document type.
- `activeState` — Active state
- `created` — Timestamp when document was created.
- `changed` — Timestamp of when the last change occurred.
- `createdBy` — Audit identification of who created the document.
- `changedBy` — Audit identification of who changed the document.
- `tenantId` — Document tenant id.
- `companyId` — Project id connected with the location.
- `departmentId` — Department id connected with the location.
- `name` — Name.
- `description` — Description.
- `geoLocation` — Location.
- `businessStatus` — Business status.
- `locationType` — Location types bound to the location
- `reviewSources` — Sources
- `organizationNumber` — The organizationNumber.
- `externalId` — Customer id added to facilitate the data correlation to 3rd party systems.
- `departments` — List of department ids connected to the location.
- `departmentIds` — List of department ids connected to the location.
- `groups` — Customer input what group the location belongs to.
- `externalLocationIds` — External location ids.
- `integrationProfileIds` — Integration profile ids.
- `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
type Location implements BaseObject {
  id: UUID
  documentType: DocumentType
  activeState: ActiveState
  created: DateTime
  changed: DateTime
  createdBy: String
  changedBy: String
  tenantId: String
  companyId: UUID
  departmentId: UUID
  name: String
  description: String
  geoLocation: GeoLocation
  businessStatus: BusinessStatus
  locationType: [LocationType]
  reviewSources: [ReviewSourceDetails]
  organizationNumber: String
  externalId: String
  departments: [String]
  departmentIds: [String]
  groups: String
  externalLocationIds: [String]
  integrationProfileIds: [String]
  summary: ReviewSummary
  externalIdMapping: [ExternalMappingModel]
  websiteUrl: String
  websiteName: String
  phone: String
  email: String
  logoUrl: String
}
```