Skip to main content
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.
External DocumentationTo learn more, visit the Artemis documentation.

Parameters

ParameterDescription
Case IDThe ID of the case to retrieve activities for.
CursorThe cursor used for pagination. Obtain this value from the next_cursor field in a previous response.
LimitThe maximum case activities retrieved in a single execution. The valid range is 1-100.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{
	"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
Workflow LibraryPreview this Workflow on desktop