Я пытаюсь создать надстройку для Outlook, которая пересылает электронную почту с помощью Microsoft API, но я получаю сообщение об ошибке, в котором говорится, что «комментарий» недопустим, если он соответствует документации.
Я следую за сопроводительной документацией:
здесь
var forwardMessage = Office.context.mailbox.restUrl +
'/beta/me/messages/' + itemId + '/forward';
var body= JSON.stringify({
"comment": item,
"toRecipients": [
{
"emailAddress": {
"address": "email@email.com",
"name": "name"
}
}
]
})
$.ajax({
url: forwardMessage,
method:"POST",
dataType: 'json',
headers: { 'Authorization': 'Bearer ' + accessToken,
'Content-Type': "application/json" },
data: body
}).then(
console.log("done")
)
}).catch(function(error){
throw error;
});
Ошибка:
{"error":{"code":"RequestBodyRead","message":"The parameter 'comment' in the request payload is not a valid parameter for the operation 'Forward'."}}