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

Parameters

ParameterDescription
Case IDThe e-Discovery case ID. Can be obtained by using the List Cases action.
Operation IDThe ID of the case operation to retrieve. Returned in the Location header of the Estimate Statistics and Export Report actions.

Example Output

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