How to get chat id using conversation id ?

DevAsith
51
Reputation points
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
4,144 questions
Microsoft Teams | Microsoft Teams for business | Other
10,941 questions
Sign in to answer