---
title: "Get all work tasks with optional filtering"
method: GET
path: "/WorkTasks"
tags: ["WorkTasks"]
---

# Get all work tasks with optional filtering

`GET /WorkTasks`

## Query parameters

- `status` string
- `lifecycle` string
- `category` string
- `priority` string
- `assignedToId` string
- `unassignedOnly` boolean
- `patientId` string
- `search` string
- `skip` union
  - integer
  - string, int32
- `take` union
  - integer
  - string, int32

## Response `200`

Paginated list of work tasks

- WorkTaskListResponseDto
  - `data` WorkTaskDto[]
    - `id` string
    - `title` string
    - `description` string, nullable
    - `patientId` string, nullable
    - `patient` WorkTaskPatientSummaryDto
      - `id` string
      - `name` string
      - `species` string, nullable
      - `ownerName` string, nullable
    - `assignedToId` string, nullable
    - `assignedTo` WorkTaskUserSummaryDto
      - `id` string
      - `name` string
      - `role` string, nullable
    - `createdById` string, nullable
    - `createdBy` WorkTaskUserSummaryDto
      - `id` string
      - `name` string
      - `role` string, nullable
    - `status` string
    - `category` string
    - `priority` string
    - `dueDate` string, date-time, nullable
    - `completedAt` string, date-time, nullable
    - `completedById` string, nullable
    - `completedBy` WorkTaskUserSummaryDto
      - `id` string
      - `name` string
      - `role` string, nullable
    - `notes` WorkTaskNoteDto[]
      - `id` string
      - `workTaskId` string
      - `authorId` string
      - `authorName` string, nullable
      - `content` string
      - `createdAt` string, date-time
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
    - `callbackType` string, nullable — Subtype of a callback: "DoctorCallback" | "LabResult" | … (null otherwise).
    - `promisedById` string, nullable — Staff member who promised the client a contact (accountability axis).
    - `promisedBy` WorkTaskUserSummaryDto
      - `id` string
      - `name` string
      - `role` string, nullable
    - `outcome` string, nullable — Structured contact result set on completion: "Reached" | "LeftVoicemail" | … (null until completed).
    - `escalated` boolean — True once an overdue callback has been escalated to administrators (PAW-625).
    - `entityType` string, nullable — Type of entity this task is linked to (e.g., "appointment", "soap_note")
    - `entityId` string, nullable — ID of the linked entity - frontend resolves to URL based on EntityType
  - `totalCount` union
    - integer
    - string, int32

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/revisions/a905bde4e796/schema)
