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

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

# ApprovedQuote

## 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:
    MonthlySavings:
      type: object
      properties:
        minSavings:
          type: number
          description: Minimunm Savings
          example: 132
        maxSavings:
          type: number
          description: Maximum Savings
          example: 222
        targetSavings:
          type: number
          description: Target Savings
          example: 132
    ApprovedQuote:
      type: object
      properties:
        quoteId:
          type: string
          description: Unique Id generated by the LPS system
          example: Q332022203127424
        acctValIntRate:
          type: number
          description: Account value interst rate
          example: 3.5
        riskClass:
          type: string
          enum:
            - Elite Non-Tobacco
            - Preferred Non-Tobacco
            - Standard Non-Tobacco
            - Standard Tobacco
            - Standard Aggregate
            - Substandard Non-Tobacco
            - Substandard Tobacco
          description: Risk Class Configured at LPS Engine
          example: Elite Non-Tobacco
        faceAmount:
          type: number
          description: Face Amount
          example: 250000
        premiumAmount:
          type: number
          format: double
          description: Premium amount
          example: 216.16
        paymentTerm:
          type: string
          description: Duration of payment
          example: "20"
        issueAge:
          type: string
          description: Age at issue
          example: "26"
        quoteDate:
          type: string
          format: date-time
          description: date (with pattern "yyyy-MM-dd'T'HH:mm:ss'Z'"). Quote date
        cashValue:
          type: number
          description: Cash value as on date
          example: 3952.941779
        pricingVersion:
          type: string
          description: Internal to LPS
          example: 2021.10.15
        matchVersion:
          type: string
          description: Internal to LPS
          example: 2021.10.15
        matchPercent:
          type: number
          description: Match percent
          example: 1
        averageMonthlyCOI:
          type: number
          description: Average monthly cost of issuance
          example: 76
        firstMonthCOI:
          type: number
          description: first month cost of issuance
          example: 17.46
        adminFee:
          type: number
          description: Admin fee
          example: 8
        firstMonthSavings:
          type: number
          description: First month saving
          example: 190.54
        monthlySavings:
          $ref: "#/components/schemas/MonthlySavings"
```
