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

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

# TaskAssigneeSummaryModel

## 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:
    TaskAssigneeSummaryModel:
      type: object
      properties:
        caseId:
          type: string
          description: The unique identifier of the case
        tasks:
          type: array
          description: List of tasks for the case, each with unique assignee details
          items:
            type: object
            properties:
              taskId:
                type: string
                description: The unique identifier of the task
              uniqueAssigneePartyIds:
                type: array
                description: Set of unique party IDs assigned to the task
                uniqueItems: true
                items:
                  type: string
```
