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

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

# Party

## 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
    Party:
      type: object
      properties:
        partyRole:
          type: string
          enum:
            - PAYOR
            - PAYEE
          description: Note -Use systematicProgram.parties.partyRole field instead of
            systematicProgram.party.partyRole
          example: PAYOR
        partyId:
          type: string
          description: Note -Use systematicProgram.parties.partyId field instead of
            systematicProgram.party.partyId
          example: Party_PI_1
        percentage:
          type: number
          description: Note -Use systematicProgram.parties.percentage field instead of
            systematicProgram.party.percentage
          example: 10
          format: double
        bankId:
          type: string
          description: Note -Use systematicProgram.parties.bankId field instead of
            systematicProgram.party.bankId
          example: Bank_1
        paymentForm:
          $ref: "#/components/schemas/PaymentForm"
```
