13,724 questions
Hi @Dinesh K
Attachments are not a basic property of the message endpoint and are not returned when you get the message, but you can extend the attachment endpoint when you get the message.
var result = await graphClient.Me.Messages["{message-id}"].GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Expand = new string []{ "attachments" };
});
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.