Connectors
...
Actions
Reply to Email
5 min
description send a custom reply to an email by specifying the recipient's address and email id using microsoft graph api endpoint url /v1 0/users/{{email address}}/messages/{{email id}}/reply method post inputs path parameters (object) – required path parameters email address (string) – required the account associated with the email email id (string) – required the id of the email json body (object) – required json body comment (string) a comment to include can be an empty string savetosentitems (boolean) indicates whether to save the message in sent items specify it only if the parameter is false; default is true optional message (object) the message to send subject (string) the subject of the email body (object) the body of the message it can be in html or text format content (string) the content of the item contenttype (string) the type of the content possible values are text and html sender (object) the account that is actually used to generate the message in most cases, this value is the same as the from property address (string) – required name (string) replyto (array) the email addresses to use when replying emailaddress (object) – required address (string) – required name (string) torecipients (array) the list of direct recipient objects emailaddress (object) – required address (string) – required name (string) ccrecipients (array) the list of cc recipient objects emailaddress (object) – required address (string) – required name (string) bccrecipients (array) the list of bcc recipient objects emailaddress (object) – required address (string) – required name (string) attachments (array) items attached to this email contentbytes (string) name (string) @odata type (string) contenttype (string) output example \[ { "status code" 202, "response headers" { "cache control" "private", "strict transport security" "max age=31536000", "request id" "ff02930a 6227 4d5f ab7f 2be87c82657f", "client request id" "ff02930a 6227 4d5f ab7f 2be87c82657f", "x ms ags diagnostic" "{\\"serverinfo\\" {\\"datacenter\\" \\"brazil south\\",\\"slice\\" \\"e\\",\\"ring\\" \\"3\\",\\"scaleunit\\" \\"001\\",\\"roleinstance\\" \\"cp1pepf0000307a\\"}}", "date" "sat, 05 nov 2022 13 41 17 gmt", "content length" "0" }, "reason" "accepted", "response text" "" } ] output parameters status code (number) reason (string) response text (string) response headers header type cache control string strict transport security string request id string client request id string x ms ags diagnostic string date string content length string