---
title: "Payouts"
url: "https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7/schemas/Payouts"
---

> Full API specification: https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7.md

# Payouts

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business Annuity API
  version: 0.6.0
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:
    Payouts:
      type: object
      required:
        - payoutOption
      properties:
        payoutOption:
          type: string
          enum:
            - LIFEONLY
            - JLONLY
            - PC
            - AC
            - LWPC
            - LWCR
          example: LIFEONLY
        livesType:
          type: string
          description: Lives Type
          example: Single
        primarySurvivorAdjType:
          type: string
          description: Primary Survivor Adjustment Type
        primarySurvivorAdjPct:
          type: string
          description: Primary Survivor Adjustment Percent
          example: "100"
        jointSurvivorAdjType:
          type: string
          description: Joint Survivor Adjustment Type
        jointSurvivorAdjPct:
          type: string
          description: Joint Survivor Adjustment Percent
          example: "100"
        annuityFrequencyCode:
          type: string
          enum:
            - DLY
            - BIWKLY
            - MNTHLY
            - SEMIANN
            - QTRLY
            - ANNUAL
            - SNGLPMT
            - BIMNTHLY
          example: DLY
        certainPeriodQualifier:
          type: string
          description: Certain Period Qualifier
          example: A
        certainPeriod:
          type: string
          description: Certain Period
          example: "1"
        payoutStartDate:
          type: string
          format: date
          pattern: ([0-9]{4})-([0-9]{2})-([0-9]{2})
          description: Date (with pattern "yyyy-mm-dd").
          example: 2023-12-19
        FixedPaymentAmount:
          type: string
          format: integer
          example: "1000"
```
