---
title: "ContactLiaisonRequest"
url: "https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75/schemas/ContactLiaisonRequest"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75.md

# ContactLiaisonRequest

Broker contact person details used to search for or create a contact liaison under a producer.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: uat
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    ContactLiaisonRequest:
      type: object
      description: Broker contact person details used to search for or create a
        contact liaison under a producer.
      required:
        - firstName
        - lastName
      properties:
        firstName:
          type: string
          description: First name of the broker contact person.
          example: John
        lastName:
          type: string
          description: Last name of the broker contact person.
          example: Smith
        fullName:
          type: string
          description: Full name of the broker contact person (optional, used for display).
          example: John Smith
        email:
          type: string
          description: Email address of the broker contact person.
          example: john.smith@broker.com
        phoneNo:
          type: string
          description: Phone number of the broker contact person.
          example: +44 20 7946 0958
        mobilePhone:
          type: string
          description: Mobile phone number of the broker contact person.
          example: +44 7700 900000
```
