---
title: "IriPartyEmail"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/IriPartyEmail"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# IriPartyEmail

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IriEmailType:
      type: string
      description: Type or category of the email address.
      enum:
        - PERSONAL
        - BUSINESS
        - CUSTOMERSERVICE
        - OTHER
    IriPartyEmail:
      type: object
      properties:
        startDate:
          type: string
          description: Date the email record becomes effective.
          example: 2026-03-06
          format: date
        endDate:
          type: string
          description: Date the email record ends.
          example: 2027-03-06
          format: date
        emailType:
          $ref: "#/components/schemas/IriEmailType"
        emailAddress:
          type: string
          description: Email address of the party.
          example: john.public@example.com
          format: email
          pattern: ^[^@\s]+@[^@\s]+\.[^@\s]+$
        isPreferred:
          type: boolean
          description: Whether this is the preferred email address.
          example: true
        emailId:
          type: string
          description: Record identifier for the email.
          example: EM001
          pattern: ^[A-Za-z0-9._-]{1,100}$
      required:
        - emailAddress
```
