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

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

# PartyNameChangeRequest

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    PartyType:
      type: string
      enum:
        - INDIVIDUAL
        - ORGANIZATION
        - TRUST
        - INSURED
    PartyName:
      type: object
      properties:
        firstName:
          type: string
          description: First name
          example: John
        middleName:
          type: string
          description: Middle name
          example: William
        lastName:
          type: string
          description: Last Name
          example: Doe
        fullName:
          type: string
          description: Full Name
          example: John William Doe
        prefix:
          $ref: "#/components/schemas/Prefix"
        suffix:
          type: string
          enum:
            - JR
            - SN
            - SR
            - I
            - II
            - III
            - IV
            - V
            - VI
            - VII
          description: The suffix of the party name
        doingBusinessAs:
          type: string
          description: Doing Business As
          example: TPA
        abbreviatedName:
          type: string
          description: Abbreviated Name
          example: AG
    Prefix:
      type: string
      enum:
        - MR
        - MS
        - MISS
        - MRS
        - DR
    PartyNameChangeRequest:
      type: object
      properties:
        correlationId:
          type: string
          example: 657b717b7dcf554abf9ef067
          description: The unique ID to track transaction request across all systems
        effectiveDate:
          type: string
          example: 2023-01-01
          description: Date (with pattern "yyyy-mm-dd")
          format: date
        partyType:
          $ref: "#/components/schemas/PartyType"
        partyName:
          $ref: "#/components/schemas/PartyName"
```
