An API that connects multiple Microsoft services, enabling data access and automation across platforms
If you using the Graph SDK then you can get all the Messages in a conversation using something like
var ConversationMessages2 = await GraphServiceClient.Users[UserId].Messages.Request().Filter("conversationid eq '" + Message.ConversationId + "'").OrderBy("receivedDateTime desc").GetAsync()