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

# ExternalMappingModelInput

GraphQL input

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

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `externalId` — Location id in the integration source.
- `integrationSource` — Integration source to mapping to.
- `integrationProfileId` — Integration profile id.

## Definition

```graphql
input ExternalMappingModelInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  externalId: String
  integrationSource: IntegrationSource
  integrationProfileId: UUID
}
```