---
title: "DocumentsList"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/DocumentsList"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# DocumentsList

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    DocumentInformation:
      type: object
      properties:
        documentStream:
          type: string
          description: Document binary string
        documentType:
          type: string
          enum:
            - Terms of Use
            - Notice and Consent
            - Privacy Policy
            - GLBA Privacy Notice
            - FCRA
            - MIB Pre Notice
            - ID Verification Notice
            - HIPAA
            - Accelerated Benefit Rider
            - Buyer Guide
            - Illustration
            - Suitability
            - Application
            - Signed Application
            - Replacements Acknowledgement
            - 1035 Exchange Surrender
            - Evidence Document
            - Amendment
            - Electronic Funds Transfer
            - Supplemental Application
            - Conforming Illustration
            - Signed Illustration
            - Overflow Additional Information
          description: Types of document
          example: Illustration
        documentCategory:
          type: string
          description: Category of the document as per OnBase system
          example: NB Supporting Document
        documentFileType:
          type: string
          enum:
            - application/pdf
            - image/jpeg
            - image/jpg
            - image/png
          description: Type of file
    Signature:
      required:
        - state
        - date
      type: object
      properties:
        date:
          type: string
          description: Sign Date
          example: 2021-01-12
        city:
          type: string
          description: City name
          example: Quincy
        state:
          $ref: "#/components/schemas/State"
        ip:
          type: string
          description: IP address
          example: 11.11.11.111
    State:
      type: string
      example: CA
      enum:
        - AL
        - AK
        - AZ
        - AR
        - AS
        - AA
        - AE
        - AP
        - CA
        - CO
        - CT
        - DC
        - DE
        - FL
        - GA
        - GU
        - HI
        - ID
        - IL
        - IN
        - IA
        - KS
        - KY
        - LA
        - ME
        - MD
        - MA
        - MI
        - MN
        - MS
        - MO
        - MT
        - MP
        - NE
        - NV
        - NH
        - NJ
        - NM
        - NY
        - NC
        - ND
        - OH
        - OK
        - OR
        - PA
        - PR
        - RI
        - SC
        - SD
        - TN
        - TX
        - UT
        - UM
        - VT
        - VA
        - VI
        - WA
        - WV
        - WI
        - WY
      description: Abbreviated names for states
    DocumentsList:
      type: object
      properties:
        referenceId:
          type: string
          description: Unique number assigned to given document
        trackingId:
          type: string
          description: Tracking Id
        productCode:
          type: string
          enum:
            - ABC001
          description: Product code
          example: ABC001
        documentInformation:
          type: array
          items:
            $ref: "#/components/schemas/DocumentInformation"
        signature:
          type: array
          items:
            $ref: "#/components/schemas/Signature"
```
