> ## 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.

# Get Case Operation

Get an e-Discovery case operation by its ID to check its status or retrieve its final details. Use this to poll operations created by the `Estimate Statistics` and `Export Report` actions until `status` is `succeeded`. For a completed export, the response includes `exportFileMetadata` with the download URL, file name, and size. The returned fields vary by operation type.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `eDiscovery.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft E-Discovery documentation](https://learn.microsoft.com/en-us/graph/api/security-caseoperation-get?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                           |
  | ------------ | ------------------------------------------------------------------------------------------------------------------------------------- |
  | Case ID      | The e-Discovery case ID. Can be obtained by using the `List Cases` action.                                                            |
  | Operation ID | The ID of the case operation to retrieve. Returned in the `Location` header of the `Estimate Statistics` and `Export Report` actions. |
</div>

## Example Output

```json theme={"dark"}
{
  "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#security/cases/ediscoveryCases('b0073e4e-4184-41c6-9eb7-8c8cc3e2288b')/operations/$entity",
  "@odata.type": "#microsoft.graph.security.ediscoveryAddToReviewSetOperation",
  "createdDateTime": "2022-05-23T16:51:34.8281972Z",
  "completedDateTime": "0001-01-01T00:00:00Z",
  "percentProgress": 50,
  "status": "running",
  "action": "addToReviewSet",
  "id": "850c2f64b1ee44a4a69729327aac2b04",
  "createdBy": {
    "application": null,
    "user": {
      "id": "c25c3914-f9f7-43ee-9cba-a25377e0cec6",
      "displayName": "MOD Administrator",
      "userPrincipalName": "admin@contoso.com"
    }
  }
  "reportFileMetadata": [
    {
      "fileName": "Export 1.zip",
      "downloadUrl": "https://ediscovery.blob.core.windows.net/export/Export%201.zip?sv=...",
      "size": 102400
    }
  ]
}
```

## Workflow Library Example

[Get Case Operation with Microsoft E Discovery and Send Results Via Email](https://library.blinkops.com/workflows/get-case-operation-with-microsoft-e-discovery-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/get-case-operation-with-microsoft-e-discovery-and-send-results-via-email/canvas" />
</div>
