使用Outlook / Office 365 REST设置自定义标头

时间:2016-07-05 23:07:15

标签: office365 outlook-restapi

我知道可以get the headers from an email with this Outlook REST,但有没有办法可以设置自定义标头?我似乎找不到任何文件。

1 个答案:

答案 0 :(得分:8)

尝试在邮件对象上设置SingleValueExtendedProperties。您可以尝试使用PS_INTERNET_HEADERS - {00020386-0000-0000-C000-000000000046}的属性ID。

使用自定义标头创建新邮件可能如下所示:

POST https://outlook.office.com/api/beta/me/messages

Content-Type: application/json
{
    ...,
    "SingleValueExtendedProperties": [
        {
            "PropertyId":"String {00020386-0000-0000-C000-000000000046} Name x-my-custom-header",
            "Value":"Some Value"
        }
    ]
}