We are trying to convert from EWS into Microsoft Graph API , I saw that the basic "schema extensions"
with api: GET -
https://graph.microsoft.com/v1.0/me/messages
the response is:
{
"value": [
{
"receivedDateTime": "datetime-value",
"sentDateTime": "datetime-value",
"hasAttachments": true,
"subject": "subject-value",
"body": {
"contentType": "",
"content": "content-value"
},
"bodyPreview": "bodyPreview-value"
}
]
}
following the ask question:
Add custom headers and retrieve custom header using Microsoft Graph API
I want to insert some headers like EWS protocol following the picture below:
P.S:
I saw it is possible in beta version:
How can I do it exactly ??