---
title: "ContactLiaisonRequest"
url: "https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660/schemas/ContactLiaisonRequest"
---

> Full API specification: https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660.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: "2.0"
servers:
  - url: https://trident-api.connecttrident.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
```
