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

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

# CaseLinkDetailsResponse

Response containing a list of linked cases for a given case

## 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:
    LinkedCaseRecord:
      type: object
      description: Represents a link between two cases
      properties:
        caseDetails:
          $ref: "#/components/schemas/CaseSummary"
        associatedCaseDetails:
          $ref: "#/components/schemas/CaseSummary"
        linkType:
          type: string
          description: The type of relationship between the cases
          enum:
            - CHILD
            - RELATED
            - DUPLICATE
          example: CHILD
        linkReason:
          type: string
          description: The reason for linking the cases
          example: Child case created for policy amendment
        linkedCases:
          type: array
          description: Nested linked cases forming a recursive hierarchy of case
            relationships
          items:
            $ref: "#/components/schemas/LinkedCaseRecord"
          default: []
    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
    CaseLinkDetailsResponse:
      type: object
      description: Response containing a list of linked cases for a given case
      properties:
        linkedCases:
          type: array
          description: List of linked case records
          items:
            $ref: "#/components/schemas/LinkedCaseRecord"
          default: []
```
