Hi @TWS
I'm glad to hear you solve the problem, if you have any issue about MS Graph Booking, you are welcome to raise a ticket in this forum.
By the way, since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others." and according to the scenario introduced here: Answering your own questions on Microsoft Q&A, I would make a brief summary of this thread:
How to send a message reply with attachments
Solution:
Providing the file details under attachments
property in request payload, able to send the attachments while replying to the message using MS Graph API.
{
"message": {
"subject": "Test reply",
"toRecipients":[
{
"emailAddress": {
"address":"******@test.com",
"name":"name"
}
}
],
"attachments": [
{
"@odata.type": "#microsoft.graph.fileAttachment",
"name": "attachment1.txt",
"contentType": "text/plain",
"contentBytes": "SGVsbG8gV29ybGQh"
},
{
"@odata.type": "#microsoft.graph.fileAttachment",
"name": "attachment2.txt",
"contentType": "text/plain",
"contentBytes": "SGVsbG8gV29ybGQh"
}
]
},
"comment": "reply 123456"
}
You could click the "Accept Answer" button for this summary to close this thread, and this can make it easier for other community members to see the useful information when reading this thread. Thanks for your understanding!