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

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

# FundTransfer

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business Annuity API
  version: 0.7.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:
    FundTransfer:
      type: object
      additionalProperties: false
      properties:
        srcFundCode:
          type: string
          description: Source fund code from which the amount or percentage will be
            transferred.
        srcFundAllocAmt:
          type: number
          description: Amount allocated from the source fund for transfer, when applicable.
          format: double
          example: 238500.5
        srcFundAllocPercent:
          type: number
          description: Percentage allocated from the source fund for transfer, when
            applicable.
        srcTargetFundCode:
          type: string
          description: Target fund code to which the amount or percentage will be
            transferred.
        srcTargetFundAllocAmt:
          type: number
          description: Amount allocated to the target fund, when applicable.
          format: double
          example: 238500.5
        srcTargetFundAllocPercent:
          type: number
          description: Percentage allocated to the target fund, when applicable.
```
