---
title: "Get a specific work task by ID"
method: GET
path: "/WorkTasks/{id}"
tags: ["WorkTasks"]
---

# Get a specific work task by ID

`GET /WorkTasks/{id}`

## Path parameters

- `id` string, required

## Response `200`

OK

- 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

## Other responses

- `404` — Not Found

---

[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/versions/a905bde4e796/schema)
