> ## 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 Response Guidance

Retrieve a list of the recommended response actions for a case.

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-response-guidance).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                      |
  | --------- | ---------------------------------------------------------------- |
  | Case ID   | The ID of the case to retrieve recommended response actions for. |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"id": "rg-2b9c",
			"response_type": "REMEDIATION",
			"title": "Disable the user account",
			"instruction_steps": [
				"Open the IdP admin console",
				"Disable the account jdoe@example.com"
			],
			"intent": "disable",
			"category": "user",
			"target_type": "user",
			"target_value": "jdoe@example.com",
			"reversibility": "reversible",
			"completed": true,
			"completed_at": null,
			"latest_execution_status": "success",
			"latest_execution_at": "2026-06-10T15:10:00Z",
			"severity": "high",
			"created_at": "2026-06-10T14:00:00Z",
			"updated_at": "2026-06-10T15:10:00Z"
		}
	],
	"next_cursor": null,
	"has_more": false
}
```

## Workflow Library Example

[List Case Response Guidance with Artemis and Send Results Via Email](https://library.blinkops.com/workflows/list-case-response-guidance-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-response-guidance-with-artemis-and-send-results-via-email/canvas" />
</div>
