---
title: "SystematicProgramParties"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/SystematicProgramParties"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# SystematicProgramParties

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    PaymentForm:
      type: string
      enum:
        - DTCC
        - CREDITCARD
        - ACH
        - CHECK
        - WIRE
        - EXCHANGE
        - PREMIUMLOAN
    SystematicProgramParties:
      type: object
      properties:
        partyRole:
          type: string
          enum:
            - PAYOR
            - PAYEE
          description: Role the program is tied to ( for example for money-in ,I could be
            owner or payor & for money-out it could be payee or beneficiary)
          example: PAYOR
        partyId:
          type: string
          description: Role ID of the party
          example: Party_PI_1
        percentage:
          type: number
          example: 10
          format: double
          description: The party percentage for this program
        bankId:
          type: string
          description: Bank Account Tied to the Party
          example: Bank_1
        addressId:
          type: string
          description: Address Tied to the Party ID. In case of payment method Check ,
            this field is required
          example: "1"
        paymentForm:
          $ref: "#/components/schemas/PaymentForm"
        forBenefitOfOrForFurtherCredit:
          type: string
          description: FBO - For Benefit Of FFC - For Further Credit(to notate a second
            beneficiary or to designate a person or organization when funds are
            disbursed out)
          example: TBD
        forBenefitOfOrForFurtherCreditIndicator:
          type: boolean
          example: true
          description: Indicates whether the outgoing funds are being requested for the
            benefit of or for further credit to another person or organization.
```
