---
title: "PrimaryContact"
url: "https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9/schemas/PrimaryContact"
---

> Full API specification: https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9.md

# PrimaryContact

Primary contact for ASSISTED servicing mode. Required when servicingMode is ASSISTED.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: AML Verification API
  version: v1
servers:
  - url: https://api.pexaclear.com.au
    description: API Gateway URL
components:
  schemas:
    PrimaryContact:
      type: object
      description: Primary contact for ASSISTED servicing mode. Required when
        servicingMode is ASSISTED.
      required:
        - familyName
        - mobile
        - email
      properties:
        firstName:
          type: string
          nullable: true
          minLength: 1
          maxLength: 50
          description: First name of the primary contact
        middleName:
          type: string
          nullable: true
          minLength: 1
          maxLength: 50
          description: Middle name of the primary contact
        familyName:
          type: string
          minLength: 1
          maxLength: 50
          description: Last name of the primary contact
        mobile:
          type: string
          pattern: ^\+[1-9]\d{6,14}$
          description: International mobile number
          example: "+61400000000"
        email:
          type: string
          format: email
          maxLength: 320
          pattern: ^[A-Za-z0-9+_.-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$
          description: Email address
```
