消息:replyAllmessage: replyAll
答复邮件的所有收件人。然后邮件保存在已发送邮件文件夹中。Reply to all recipients of a message. The message is then saved in the Sent Items folder.
权限Permissions
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
权限类型Permission type | 权限(从最低特权到最高特权)Permissions (from least to most privileged) |
---|---|
委派(工作或学校帐户)Delegated (work or school account) | Mail.SendMail.Send |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | Mail.SendMail.Send |
应用程序Application | Mail.SendMail.Send |
HTTP 请求HTTP request
POST /users/me/messages/{id}/replyAll
POST /users/{id | userPrincipalName}/messages/{id}/replyAll
POST /me/mailFolders/{id}/messages/{id}/replyAll
POST /users/{id | userPrincipalName}/mailFolders/{id}/messages/{id}/replyAll
请求标头Request headers
名称Name | 类型Type | 说明Description |
---|---|---|
AuthorizationAuthorization | stringstring | Bearer {token}。必需。Bearer {token}. Required. |
Content-TypeContent-Type | stringstring | 实体正文中的数据性质。必需。Nature of the data in the body of an entity. Required. |
请求正文Request body
在请求正文中,提供具有以下参数的 JSON 对象。In the request body, provide a JSON object with the following parameters.
参数Parameter | 类型Type | 说明Description |
---|---|---|
注释comment | StringString | 要包含的注释。可以为空字符串。A comment to include. Can be an empty string. |
响应Response
如果成功,此方法返回 202 Accepted
响应代码。它不在响应正文中返回任何内容。If successful, this method returns 202 Accepted
response code. It does not return anything in the response body.
示例Example
下面是一个如何调用此 API 的示例。Here is an example of how to call this API.
请求Request
下面是一个请求示例。Here is an example of the request.
POST https://graph.microsoft.com/v1.0/me/messages/{id}/replyAll
Content-type: application/json
Content-length: 32
{
"comment": "comment-value"
}
响应Response
下面是一个响应示例。Here is an example of the response.
HTTP/1.1 200 OK