2016-07-05 46 views

回答

7

嘗試在消息對象上設置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" 
     } 
    ] 
}