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

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

# CaseCancellationRequest

## 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:
    CaseCancellationRequest:
      type: object
      required:
        - correlationId
        - planCode
        - policyNumber
        - reason
        - type
      properties:
        correlationId:
          type: string
          description: Unique identifier to trace the request across systems
          example: 218d8992-3783-42ac-b59a-66cbc36adaa2
        planCode:
          type: string
          description: Product code provided by the Zinnia system
          example: TL0101
        policyNumber:
          type: string
          description: The policy number associated with the case
          example: FIUL463340020
        reason:
          type: string
          description: The reason for cancelling the case
          example: User requested cancellation
        requestedBy:
          type: string
          description: The entity requesting cancellation. Derived from the authenticated
            token.
          example: CLIENT
        type:
          type: string
          description: The transaction type associated with the case
          example: Reinstatement
        subType:
          type: string
          description: The transaction sub-type associated with the case
          example: Reinstatement
```
