使用Microsoft-Graph API回复电子邮件时如何添加附件?

时间:2019-04-01 13:47:58

标签: microsoft-graph

我正在使用microsoft-graph api。我想在邮件replying时添加附件。

我尝试将附件添加到请求正文中,但是我没有用。

{ "attachments":[
  { 
    "@odata.type":"#Microsoft.OutlookServices.FileAttachment", 
    "name":"image.png", 
    "contentBytes":"base64 string"
   }],
  "comment": "reply body"
}

1 个答案:

答案 0 :(得分:0)

您必须先create a replyadd the attachment,然后再send the message。您无法使用基本的/reply端点来做到这一点。