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

# Company

GraphQL object

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

## 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.
- `name` — Name.
- `companyType` — Company type.
- `organizationNumber` — Organization number.
- `address` — Address.
- `externalId` — External id.
- `vatCode` — VAT code.
- `surveySettings` — Survey settings.
- `defaultBrandVoiceId` — Default brand voice id.
- `defaultQrCodeStyle` — Default QR code style.

## Definition

```graphql
type Company implements BaseObject {
  id: UUID
  documentType: DocumentType
  activeState: ActiveState
  created: DateTime
  changed: DateTime
  createdBy: String
  changedBy: String
  tenantId: String
  name: String
  companyType: [CompanyType]
  organizationNumber: String
  address: Address
  externalId: String
  vatCode: String
  surveySettings: SurveySettings
  defaultBrandVoiceId: String
  defaultQrCodeStyle: QrCodeStyle
}
```