---
title: "EDeliveryEnrollmentRequest"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/EDeliveryEnrollmentRequest"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# EDeliveryEnrollmentRequest

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    EDeliveryEnrollmentRequest:
      type: object
      properties:
        id:
          type: string
          description: preferenceId  (should be null for preference creation)
          example: e22cd4aee27d34c9b7c748d50e558b41
        carrierId:
          type: string
          description: carrier id for policy
          example: CARRIERID_1
        deliveryOption:
          type: string
          enum:
            - EMAIL
            - FAX
            - MAIL
          description: Delivery Options - Applicable values EMAIL/FAX/MAIL
          example: EMAIL
        email:
          type: string
          example: abc.def@gmail.com
          description: User's email
        effectiveFrom:
          type: string
          format: date-time
          description: Date (with pattern "yyyy-MM-dd'T'HH:mm:ss'Z'") when the preference
            will be effective, default value is '2999-12-31T00:00:00.000Z'
        effectiveTo:
          type: string
          format: date-time
          description: Date (with pattern "yyyy-MM-dd'T'HH:mm:ss'Z'") when the preference
            will stop being effective
        documentType:
          type: string
          enum:
            - NWB
            - ANST
            - CONF
            - TAX
            - AGNT
            - POLPG
          description: Type of document
          example: AGNT
        partyId:
          type: string
          description: Unique reference id of the party
          example: f22de4bff27e45d9a7c859e61f668c50
        acknowledgedByPartyId:
          type: string
          description: Party that initiated the acknowledgment (i.e. an agent, if not the
            party referred to by partyId)
          example: f22de4bff27e45d9a7c859e61f668c50
      required:
        - carrierId
        - deliveryOption
        - effectiveFrom
        - documentType
        - partyId
        - acknowledgedByPartyId
```
