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

# CompanyInput

GraphQL input

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

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `name`
- `companyType`
- `organizationNumber`
- `address`
- `externalId`
- `vatCode`
- `surveySettings` — Survey settings.
- `defaultBrandVoiceId`
- `defaultQrCodeStyle` — Default QR code style.

## Definition

```graphql
input CompanyInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  name: String
  companyType: [CompanyType]
  organizationNumber: String
  address: AddressInput
  externalId: String
  vatCode: String
  surveySettings: SurveySettingsInput
  defaultBrandVoiceId: String
  defaultQrCodeStyle: QrCodeStyleInput
}
```