---
title: "Party"
url: "https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5/schemas/Party"
---

> Full API specification: https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5.md

# Party

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Case Management API
  version: 1.0.0
servers:
  - url: https://dev.api.zinnia.io/
    description: Dev Environment
  - url: https://qa.api.zinnia.io/
    description: QA Environment
  - url: https://uat.api.zinnia.io/
    description: UAT Environment
  - url: https://api.zinnia.io/
    description: PROD Environment
components:
  schemas:
    Address:
      type: object
      properties:
        addressLine1:
          type: string
          example: 560 calle de la sierra
        addressLine2:
          type: string
          example: ""
        addressLine3:
          type: string
          example: ""
        addressLine4:
          type: string
          example: ""
        addressType:
          type: string
          example: Default
          enum:
            - Default
            - Mailing
            - SADD
            - HADD
            - BADD
        city:
          type: string
          example: el cajon
        country:
          type: string
          example: ""
        state:
          type: string
          example: CA
        zip:
          type: string
          example: 92019-1241
        zipPlusFour:
          type: string
          example: ""
    Phone:
      type: object
      properties:
        phoneCountry:
          type: string
          example: US
        phoneNumber:
          type: string
          example: "6192001466"
        phoneTypeDesc:
          type: string
          example: Default
        phoneType:
          properties:
            text:
              type: string
              example: Owner_Phone_Day
              enum:
                - Owner_Phone_Day
                - Owner_Phone_Home
    Party:
      type: object
      properties:
        partyRoleType:
          type: string
          example: OWNER
          enum:
            - OWNER
            - ANNUITANT
            - ROLLOVER_PAYEE
            - PAYEE
            - JOINT_OWNER
        firstName:
          type: string
          example: JAMES
        middleName:
          type: string
          example: C
        lastName:
          type: string
          example: FORD
        fullName:
          type: string
          example: JAMES C FORD
        suffix:
          type: string
          example: "1"
        dob:
          type: string
          example: ""
        taxId:
          type: string
          example: "572621420"
        email:
          type: string
          example: ""
        employer:
          type: string
          example: ""
        maritalStatus:
          type: object
          properties:
            text:
              type: string
              example: Single
              enum:
                - Single
                - Married
                - Widowed
        addresses:
          type: array
          items:
            $ref: "#/components/schemas/Address"
        phones:
          type: array
          items:
            $ref: "#/components/schemas/Phone"
```
