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

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

# Payment

## 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:
    Payment:
      type: object
      properties:
        paymentMethod:
          type: string
          enum:
            - ACH
            - CC
          description: Payment methods
          example: ACH
        paymentFrequency:
          type: string
          enum:
            - m
            - q
            - a
            - sa
            - sp
          description: Frequency of premium payment
          example: m
        paymentAmount:
          type: number
          description: Payment amount
          example: 100000
      required:
        - paymentMethod
        - paymentFrequency
        - paymentAmount
```
