---
title: "CreateCaseRequest"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/CreateCaseRequest"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# CreateCaseRequest

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    IdentifierInstance:
      type: object
      description: An object representing an identifier and its corresponding value.
      properties:
        identifier:
          type: string
          enum:
            - eAppId
            - policyNumber
          description: The type of identifier.
        value:
          type: string
          description: The value of the identifier.
          example: ABC123349257367
    CreateCaseRequest:
      type: object
      properties:
        planCode:
          type: string
          description: Product code provided by the Zinnia system
          example: ABC001
        policyNumber:
          type: string
          description: In case of Post Issue Policy Number will be mandatory
          example: EVGL1234567
        correlationId:
          type: string
          description: The correlationId associated with the case.
          example: 218d8992-3783-42ac-b59a-66cbc36adaab
        caseType:
          type: string
          enum:
            - Reinstatement
            - New Business
          description: The type associated with the case.
          example: Reinstatement
        caseSubType:
          type: string
          enum:
            - Reinstatement
            - Life Application
          description: The type associated with the case.
          example: Reinstatement
        identifiers:
          type: array
          description: A list of identifiers associated with the case.
          items:
            $ref: "#/components/schemas/IdentifierInstance"
      required:
        - planCode
        - caseType
        - caseSubType
        - identifiers
```
