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

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

# AssigneeDetails

Assignee search criteria. When provided in task search, the service resolves matching users and filters tasks by their assignee partyIds.

## 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:
    AssigneeDetails:
      type: object
      description: Assignee search criteria. When provided in task search, the service
        resolves matching users and filters tasks by their assignee partyIds.
      properties:
        firstName:
          type: string
          description: Assignee first name (search criterion).
          example: John
        lastName:
          type: string
          description: Assignee last name (search criterion).
          example: Doe
        email:
          type: string
          description: Assignee email address (search criterion).
          example: john.doe@example.com
        fullName:
          type: string
          description: Assignee full name (search criterion).
          example: John Doe
```
