---
title: "TransactionAmounts"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/TransactionAmounts"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# TransactionAmounts

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    AdhocTransactionAmount:
      type: object
      properties:
        requestedAmount:
          type: number
          format: double
          description: The initial premium amount (deposit amount) paid by the party.
          example: 100
        amountType:
          $ref: "#/components/schemas/AmountType"
        disbursementType:
          $ref: "#/components/schemas/DisbursementType"
        disbursementPaymentForm:
          $ref: "#/components/schemas/DisbursementPaymentForm"
        loanType:
          $ref: "#/components/schemas/LoanType"
        loanInterestType:
          type: string
          enum:
            - FIXED
            - INDEXED
            - VARIABLE
            - ADJUSTABLE
          description: Loan Interest Type - Selected by user from dropdown values, default
            to Fixed
      required:
        - requestedAmount
        - amountType
        - disbursementType
        - disbursementPaymentForm
        - loanType
        - loanInterestType
    AmountType:
      type: string
      enum:
        - AMOUNT
        - PERCENTAGE
        - MAX
        - FREEWITHDRAWALAMOUNT
        - WITHDRAWALUNTILBASIS
        - EARNINGSONLY
        - PRORATA
      description: Amount Type selected by user. Following is dropdown list 1. Amount
        -- If selected user should be able to enter Amount for Transaction
        Amount field 2. Percent -- If selected user should be able to enter
        Percentage for Transaction Amount field 3. Max -- If selected user
        should NOT be able to enter Amount. Auto calculated using Maximum
        Withdrawal Amount. 4. Free Withdrawal Amount -- If selected user should
        NOT be able to enter Amount. Auto calcualted using Free Withdrawal
        Amount. 5. Withdraw Until Basis ---- If selected user should NOT be able
        to enter Amount. Auto calcualted using Cost Basis.
    DisbursementType:
      type: string
      enum:
        - GROSS
        - NET
        - NETNET
      description: The type of amount for  withdrawal such as Gross or Net
    DisbursementPaymentForm:
      type: string
      enum:
        - DTCC
        - EFT
        - ACH
        - CHECK
        - WIRE
      description: The type of disbursement method such as DTCC,EFT or credit
        card.Default EFT.
    LoanType:
      type: string
      enum:
        - PREFERRED
        - NONPREFERREDSTANDARDLOAN
        - INDEXLOAN
      description: Loan Types - Selected by user from dropdown values, default to
        Non-Preferred Standard Loan
    loanInterestType:
      type: string
      enum:
        - FIXED
        - INDEXED
        - VARIABLE
        - ADJUSTABLE
      description: Loan Interest Type - Selected by user from dropdown values, default
        to Fixed
    TransactionAmounts:
      allOf:
        - $ref: "#/components/schemas/AdhocTransactionAmount"
        - type: object
          properties:
            requestedAmount:
              type: number
              format: double
              description: The initial premium amount (deposit amount) paid by the party.
              example: 100
            amountType:
              $ref: "#/components/schemas/AmountType"
            disbursementType:
              $ref: "#/components/schemas/DisbursementType"
            disbursementPaymentForm:
              $ref: "#/components/schemas/DisbursementPaymentForm"
            loanType:
              $ref: "#/components/schemas/LoanType"
            loanInterestType:
              $ref: "#/components/schemas/loanInterestType"
            paymentAmount:
              type: number
              format: double
              description: The initial premium amount (deposit amount) drafted to proceed with
                the payment
              example: 100
            appliedAmount:
              type: number
              format: double
              description: The initial premium amount that is actually applied to the policy.
              example: 100
            calculatedAmount:
              type: number
              format: double
              description: The amount calculated by the LPS if the issuance transaction
                outcome fails
              example: 100
            totalChargeAmount:
              type: number
              format: double
              description: Sum of Transaction Level charges
              example: 100
            taxableAmount:
              type: number
              format: double
              description: Taxable amount for Transaction. Even If Payee selects Not To
                Withhold, this will be populated if there was Gain distributed.
              example: 100
            deathClaimPayoutPreSupplementalSecurityIncome:
              type: number
              format: double
              description: Death claim payout amount
              example: 1000
            claimStatutoryInterestAmount:
              type: number
              format: double
              description: Any interest generated on the claim amount
              example: 1000
            deathBenefitInterestCalculatedFromDate:
              type: number
              format: double
              description: Product team to review
              example: 1000
            claimStatutoryInterestRate:
              type: number
              format: double
              description: Product team to review
              example: 1000
          required:
            - requestedAmount
            - amountType
            - disbursementType
```
