---
title: "TaxContactCreation"
url: "https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579/schemas/TaxContactCreation"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579.md

# TaxContactCreation

Insured contact details to create in XFI for a specific tax-country entry. Required for Spain, Portugal, Italy and Canada when the insured record is not already present in XFI.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: dev
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    CodeReference:
      type: object
      description: Reference to a lookup-backed entity identified by `code` (the
        environment-stable business code).
      required:
        - code
      additionalProperties: false
      properties:
        code:
          type: string
    TaxContactCreation:
      type: object
      description: Insured contact details to create in XFI for a specific tax-country
        entry. Required for Spain, Portugal, Italy and Canada when the insured
        record is not already present in XFI.
      properties:
        contactType:
          type: string
          description: XFI contact type.
          example: Company
        companyName:
          type: string
          description: Insured company name for this country.
          example: Veritas Capital Spain S.L.
        mailingAddressCountry:
          $ref: "#/components/schemas/CodeReference"
          description: Mailing address country — `code` only.
        mailingAddress1:
          type: string
          description: Mailing address line 1.
          example: Calle Gran Via 28
        mailingAddress2:
          type: string
          description: Mailing address line 2.
          example: Planta 3
        city:
          type: string
          description: City.
          example: Madrid
        state:
          $ref: "#/components/schemas/CodeReference"
          description: State — `code` only.
        postCode:
          type: string
          description: Post code.
          example: "28013"
```
