我正在使用microsoft-graph api。我想在邮件replying时添加附件。
我尝试将附件添加到请求正文中,但是我没有用。
{ "attachments":[
{
"@odata.type":"#Microsoft.OutlookServices.FileAttachment",
"name":"image.png",
"contentBytes":"base64 string"
}],
"comment": "reply body"
}
答案 0 :(得分:0)
您必须先create a reply,add the attachment,然后再send the message。您无法使用基本的/reply
端点来做到这一点。