---
title: "Get case works for a case"
method: GET
path: "/cases/{case_token}/works"
tags: ["Cases"]
deprecated: true
---

# Get case works for a case

`GET /cases/{case_token}/works`

> **Deprecated.**

<Callout type="warning" title="Deprecated Warning">
  This endpoint is deprecated in favor of using Investigations.
</Callout>

Retrieves a list of case works defined for a given case by a case token.
Case work is any action an agent takes on a case.
Some examples of types of work are `closure` (close a case), `status` (change case status), `assignment_created` (assigning an agent), or `note` (leave a note on a case).
All type of case work can have a note.

## Path parameters

- `case_token` string, required

## Response `200`

CaseEvidence

- object
  - `status_code` number — The standard HTTP status code for the request
  - `error` string — A nullable string, indicating what went wrong for a failed request
  - `_embedded` object
    - `works` object[]
      - `type` 'status' | 'closure' | 'note' | 'read' | 'assignment_created' | 'assignment_removed' | 'manual_evidence_added' | 'case_escalation_created' | 'case_escalation_removed' — The specific type that an auditable action is
      - `note` string — An optional, user generated note describing why they took an action
      - `status` string — The status that the case was changed to
      - `closed` boolean — If the case was closed on this action, its value will be true
      - `reasons` string[] — The reasons for taking a certain action
      - `assigned_agent` string — The agent assigned during this action
      - `tag_name` string — The tag that was manually added during this action
      - `created_at` number — When this action was taken
      - `_embedded` object
        - `created_by` object — Represents who took this manual action
          - `name` string
          - `email` string
  - `_links` object
    - `self` Self — unresolved $ref
    - `case` Self — unresolved $ref

---

[API](https://skmtc.dev/alloy/apis/alloy-api.md) · [All operations](https://skmtc.dev/alloy/apis/alloy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/alloy/alloy-api/revisions/405799de4d2a/schema)
