> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Case Activities

Retrieve a case's audit timeline, including status changes, verdict updates, assignee changes, notes, and remediation executions.

Required permission to run this action: `cases:view`.

<Note>
  External Documentation

  To learn more, visit the [Artemis documentation](https://docs.goartemis.ai/external-api/cases#list-case-activities).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                            |
  | ---------------- | ------------------------------------------------------------------------------------------------------ |
  | Case ID          | The ID of the case to retrieve activities for.                                                         |
  | Cursor           | The cursor used for pagination. Obtain this value from the `next_cursor` field in a previous response. |
  | Limit            | The maximum case activities retrieved in a single execution. The valid range is `1`-`100`.             |
  | Return All Pages | Automatically fetch all resources, page by page.                                                       |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"id": "act-7d3e1f",
			"activity_type": "case.status_changed",
			"actor_type": "user",
			"actor_name": "Jane Analyst",
			"actor_email": "jane@example.com",
			"description": "Status changed from open to closed",
			"payload": {
				"old_status": "open",
				"new_status": "closed"
			},
			"created_at": "2026-06-10T15:04:05Z"
		}
	],
	"next_cursor": "eyJhZnRlciI6ImFjdC03ZDNlMWYifQ",
	"has_more": true
}
```

## Workflow Library Example

[List Case Activities with Artemis and Send Results Via Email](https://library.blinkops.com/workflows/list-case-activities-with-artemis-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-case-activities-with-artemis-and-send-results-via-email/canvas" />
</div>
