Namespace: microsoft.graph
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.
Unhide a chat for a user.
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) |
Chat.ReadWrite |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
Not supported. |
Not supported. |
HTTP request
POST /chats/{chatsId}/unhideForUser
Request body
In the request body, supply a JSON representation of the parameters.
The following table shows the parameters that can be used with this action.
Parameter |
Type |
Description |
user |
teamworkUserIdentity |
User to unhide the chat for. In delegated mode, users can only unhide a chat for themselves. |
Response
If successful, this action returns a 204 No Content
response code.
Examples
Request
POST https://graph.microsoft.com/beta/chats/19:7d898072-792c-4006-bb10-5ca9f2590649_8ea0e38b-efb3-4757-924a-5f94061cf8c2@unq.gbl.spaces/unhideForUser
Content-Type: application/json
{
"user": {
"id" : "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2",
"tenantId": "2a690434-97d9-4eed-83a6-f5f13600199a"
}
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Chats.Item.UnhideForUser;
using Microsoft.Graph.Beta.Models;
var requestBody = new UnhideForUserPostRequestBody
{
User = new TeamworkUserIdentity
{
Id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2",
AdditionalData = new Dictionary<string, object>
{
{
"tenantId" , "2a690434-97d9-4eed-83a6-f5f13600199a"
},
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Chats["{chat-id}"].UnhideForUser.PostAsync(requestBody);
mgc-beta chats unhide-for-user post --chat-id {chat-id} --body '{\
"user": {\
"id" : "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2",\
"tenantId": "2a690434-97d9-4eed-83a6-f5f13600199a"\
}\
}\
'
// 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"
graphchats "github.com/microsoftgraph/msgraph-beta-sdk-go/chats"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphchats.NewUnhideForUserPostRequestBody()
user := graphmodels.NewTeamworkUserIdentity()
id := "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2"
user.SetId(&id)
additionalData := map[string]interface{}{
"tenantId" : "2a690434-97d9-4eed-83a6-f5f13600199a",
}
user.SetAdditionalData(additionalData)
requestBody.SetUser(user)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
graphClient.Chats().ByChatId("chat-id").UnhideForUser().Post(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.chats.item.unhideforuser.UnhideForUserPostRequestBody unhideForUserPostRequestBody = new com.microsoft.graph.beta.chats.item.unhideforuser.UnhideForUserPostRequestBody();
TeamworkUserIdentity user = new TeamworkUserIdentity();
user.setId("d864e79f-a516-4d0f-9fee-0eeb4d61fdc2");
HashMap<String, Object> additionalData = new HashMap<String, Object>();
additionalData.put("tenantId", "2a690434-97d9-4eed-83a6-f5f13600199a");
user.setAdditionalData(additionalData);
unhideForUserPostRequestBody.setUser(user);
graphClient.chats().byChatId("{chat-id}").unhideForUser().post(unhideForUserPostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const unhideForUser = {
user: {
id: 'd864e79f-a516-4d0f-9fee-0eeb4d61fdc2',
tenantId: '2a690434-97d9-4eed-83a6-f5f13600199a'
}
};
await client.api('/chats/19:7d898072-792c-4006-bb10-5ca9f2590649_8ea0e38b-efb3-4757-924a-5f94061cf8c2@unq.gbl.spaces/unhideForUser')
.version('beta')
.post(unhideForUser);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Chats\Item\UnhideForUser\UnhideForUserPostRequestBody;
use Microsoft\Graph\Beta\Generated\Models\TeamworkUserIdentity;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new UnhideForUserPostRequestBody();
$user = new TeamworkUserIdentity();
$user->setId('d864e79f-a516-4d0f-9fee-0eeb4d61fdc2');
$additionalData = [
'tenantId' => '2a690434-97d9-4eed-83a6-f5f13600199a',
];
$user->setAdditionalData($additionalData);
$requestBody->setUser($user);
$graphServiceClient->chats()->byChatId('chat-id')->unhideForUser()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Teams
$params = @{
user = @{
id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2"
tenantId = "2a690434-97d9-4eed-83a6-f5f13600199a"
}
}
Invoke-MgBetaGraphChat -ChatId $chatId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.chats.item.unhide_for_user.unhide_for_user_post_request_body import UnhideForUserPostRequestBody
from msgraph_beta.generated.models.teamwork_user_identity import TeamworkUserIdentity
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = UnhideForUserPostRequestBody(
user = TeamworkUserIdentity(
id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2",
additional_data = {
"tenant_id" : "2a690434-97d9-4eed-83a6-f5f13600199a",
}
),
)
await graph_client.chats.by_chat_id('chat-id').unhide_for_user.post(request_body)
Response
HTTP/1.1 204 No Content