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

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

# CaseSummary

Summary information about a case in a link relationship

## 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:
    CaseSummary:
      type: object
      description: Summary information about a case in a link relationship
      properties:
        id:
          type: string
          description: The unique case identifier
          example: CA0000425395
        status:
          type: string
          description: The current status of the case
          enum:
            - IN_PROGRESS
            - EXCEPTION
            - COMPLETED
            - CANCELED
          example: IN_PROGRESS
        caseGroup:
          type: string
          description: The case group category
          example: NEW_BUSINESS
        process:
          type: string
          description: The business process associated with the case
          example: New Business
        processSubType:
          type: string
          description: The sub-type of the business process
          example: Incoming Transfer
        createdAt:
          type: string
          format: date-time
          description: The timestamp when the case was created
          example: 2025-01-05T10:30:00.000Z
        updatedAt:
          type: string
          format: date-time
          description: The timestamp when the case was last updated
          example: 2025-01-05T14:45:30.000Z
```
