Skip to content

Latest commit

 

History

History
131 lines (98 loc) · 5.22 KB

File metadata and controls

131 lines (98 loc) · 5.22 KB
title Get evaluation
description Read the properties and relationships of microsoft.graph.security.securityCopilot.evaluation object.
author spunukol
ms.date 07/17/2025
ms.localizationpriority medium
ms.subservice security-copilot
doc_type apiPageType

Get evaluation

Namespace: microsoft.graph.security.securityCopilot

[!INCLUDE beta-disclaimer]

Read the properties and relationships of microsoft.graph.security.securityCopilot.evaluation object.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

[!INCLUDE rbac-security-copilot-apis]

HTTP request

GET /security/securityCopilot/workspaces/{workspaceId}/sessions/{sessionId}/prompts/{promptId}/evaluations/{evaluationId}

Optional query parameters

This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a microsoft.graph.security.securityCopilot.evaluation object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/security/securityCopilot/workspaces/default/sessions/ecdfb9b3-58f5-457f-a18c-4a477890b252/prompts/76a9b8c6-6656-4ef4-a4c7-7ed07fb93e01/evaluations/5bde1164-29a3-4dfb-84b0-b6c0cf0e23b7

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#security/securityCopilot/workspaces('default')/sessions('ecdfb9b3-58f5-457f-a18c-4a477890b252')/prompts('76a9b8c6-6656-4ef4-a4c7-7ed07fb93e01')/evaluations/$entity",
    "@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET security/securityCopilot/workspaces('<key>')/sessions('<guid>')/prompts('<guid>')/evaluations('<guid>')?$select=completedDateTime,createdDateTime",
    "id": "5bde1164-29a3-4dfb-84b0-b6c0cf0e23b7",
    "createdDateTime": "2025-10-22T22:00:54.7638231Z",
    "runStartDateTime": "2025-10-22T22:00:55.0719448Z",
    "completedDateTime": "2025-10-22T22:01:11.2594216Z",
    "lastModifiedDateTime": "2025-10-22T22:01:11.2594216Z",
    "state": "completed",
    "executionCount": 0,
    "isCancelled": false,
    "result": {
        "content": "You are signed in as Lorenz X in this Entra ID tenant. Your User Principal Name (UPN) and email are lfx310@contoso.ms, and your User ID is 50a5fa74-dcbb-4dc3-af3a-4c431b3cb9dd.\n",
        "type": "success",
        "previewState": "private"
    }
}