---
title: "PrefillProduct"
url: "https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec/schemas/PrefillProduct"
---

> Full API specification: https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec.md

# PrefillProduct

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Connect Order Entry API
  version: 1.0.3
servers:
  - url: https://dev.api.zinnia.io
  - url: https://qa.api.zinnia.io
  - url: https://uat.api.zinnia.io
components:
  schemas:
    PrefillAddress:
      type: object
      properties:
        addressBase:
          $ref: "#/components/schemas/PrefillAddressBase"
        line3:
          type: string
          nullable: true
        line4:
          type: string
          nullable: true
        stateorprovince:
          type: string
          nullable: true
        typeCode:
          type: string
          nullable: true
      additionalProperties: false
    PrefillQuestionAnswer:
      type: object
      properties:
        questionCode:
          type: string
          nullable: true
        questionText:
          type: string
          nullable: true
        answerCode:
          type: string
          nullable: true
        answerText:
          type: string
          nullable: true
        value:
          type: number
          format: double
          nullable: true
        accountDesignationCode:
          type: string
          nullable: true
      additionalProperties: false
    PrefillAddressBase:
      type: object
      properties:
        line1:
          type: string
          nullable: true
        line2:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        stateOrProvinceCode:
          type: string
          nullable: true
        postalCode:
          type: string
          nullable: true
        countryCode:
          type: string
          nullable: true
        country:
          type: string
          nullable: true
      additionalProperties: false
    PrefillProduct:
      type: object
      properties:
        address:
          type: array
          items:
            $ref: "#/components/schemas/PrefillAddress"
          nullable: true
        carrierCode:
          type: string
          nullable: true
        cusip:
          type: string
          nullable: true
        marketingName:
          type: string
          nullable: true
        productCode:
          type: string
          nullable: true
        questionAnswer:
          type: array
          items:
            $ref: "#/components/schemas/PrefillQuestionAnswer"
          nullable: true
      additionalProperties: false
```
