How to get chat id using conversation id ?

DevAsith 51 Reputation points
2024-08-14T14:31:37.36+00:00

I'm developing a Teams bot app and need to retrieve chat history (including chat tab). I'm planning to use the Graph API endpoint /chats/{chat-id}/messages.

However, I need to know how to obtain the chat-id for this request. How can I get the chat-id?"

public async Task OnMessageActivityAsync(ITurnContext turnContext, AppState turnState, CancellationToken cancellationToken)
 {
        var conversationReference = turnContext.Activity.GetConversationReference();
       var chatId ??? //conversationReference.id  
}
Microsoft Teams | Development
Microsoft Teams | Microsoft Teams for business | Other
{count} vote

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.