Namespace: microsoft.graph.security.securityCopilot
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Update the properties of a session object.
This API is available in the following national cloud deployments.
| Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
| ✅ |
❌ |
❌ |
❌ |
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.
| Permission type |
Least privileged permissions |
Higher privileged permissions |
| Delegated (work or school account) |
SecurityCopilotWorkspaces.ReadWrite.All |
Not available. |
| Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
| Application |
SecurityCopilotWorkspaces.ReadWrite.All |
Not available. |
Important
In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Security Copilot role. Security Copilot Contributor is the least privileged role supported for this operation.
HTTP request
PATCH /security/securityCopilot/workspaces/{workspaceId}/sessions/{sessionId}
Request body
In the request body, supply only the values for properties to update. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values.
The following table specifies the properties that can be updated.
| Property |
Type |
Description |
| displayName |
String |
Display name of the session. Optional. |
Response
If successful, this method returns a 200 OK response code and an updated microsoft.graph.security.securityCopilot.session object in the response body.
Examples
Request
The following example shows a request.
PATCH https://graph.microsoft.com/beta/security/securityCopilot/workspaces/default/sessions/ecdfb9b3-58f5-457f-a18c-4a477890b252
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.security.securityCopilot.session",
"displayName": "API Test: Who am I?"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.Security.SecurityCopilot;
var requestBody = new Session
{
OdataType = "#microsoft.graph.security.securityCopilot.session",
DisplayName = "API Test: Who am I?",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Security.SecurityCopilot.Workspaces["{workspace-id}"].Sessions["{session-id}"].PatchAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodelssecuritysecuritycopilot "github.com/microsoftgraph/msgraph-beta-sdk-go/models/security/securitycopilot"
//other-imports
)
requestBody := graphmodelssecuritysecuritycopilot.NewSession()
displayName := "API Test: Who am I?"
requestBody.SetDisplayName(&displayName)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
sessions, err := graphClient.Security().SecurityCopilot().Workspaces().ByWorkspaceId("workspace-id").Sessions().BySessionId("session-id").Patch(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.models.security.securitycopilot.Session session = new com.microsoft.graph.beta.models.security.securitycopilot.Session();
session.setOdataType("#microsoft.graph.security.securityCopilot.session");
session.setDisplayName("API Test: Who am I?");
com.microsoft.graph.models.security.securitycopilot.Session result = graphClient.security().securityCopilot().workspaces().byWorkspaceId("{workspace-id}").sessions().bySessionId("{session-id}").patch(session);
const options = {
authProvider,
};
const client = Client.init(options);
const session = {
'@odata.type': '#microsoft.graph.security.securityCopilot.session',
displayName: 'API Test: Who am I?'
};
await client.api('/security/securityCopilot/workspaces/default/sessions/ecdfb9b3-58f5-457f-a18c-4a477890b252')
.version('beta')
.update(session);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\Security\SecurityCopilot\Session;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new Session();
$requestBody->setOdataType('#microsoft.graph.security.securityCopilot.session');
$requestBody->setDisplayName('API Test: Who am I?');
$result = $graphServiceClient->security()->securityCopilot()->workspaces()->byWorkspaceId('workspace-id')->sessions()->bySessionId('session-id')->patch($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.security.security_copilot.session import Session
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = Session(
odata_type = "#microsoft.graph.security.securityCopilot.session",
display_name = "API Test: Who am I?",
)
result = await graph_client.security.security_copilot.workspaces.by_workspace_id('workspace-id').sessions.by_session_id('session-id').patch(request_body)
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/$entity",
"id": "ecdfb9b3-58f5-457f-a18c-4a477890b252",
"createdDateTime": "2025-10-22T20:10:54.4940649Z",
"lastModifiedDateTime": "2025-10-22T20:53:40.2100304Z",
"displayName": "API Test: Who am I?"
}