I am using delta requset to track change on M365 mail folders:
GET https://graph.microsoft.com/v1.0/me/mailFolders/{id}/messages/delta
But I encounter some error for some in-place archive mailfolder (rest are good).
{
"error": {
"code": "ErrorMailboxMoveInProgress",
"message": "Mailbox move in progress. Try again later., The user and the mailbox are in different Active Directory sites.",
"innerError": {
"date": "2021-04-21T07:06:41",
"request-id": "eea2a19f-7ab1-4039-9ecb-4d11fbaeba77",
"client-request-id": "eea2a19f-7ab1-4039-9ecb-4d11fbaeba77"
}
}
}
cache-control →private
client-request-id →eea2a19f-7ab1-4039-9ecb-4d11fbaeba77
content-encoding →gzip
content-type →application/json
date →Wed, 21 Apr 2021 07:06:40 GMT
preference-applied →odata.track-changes
request-id →eea2a19f-7ab1-4039-9ecb-4d11fbaeba77
retry-after →15
strict-transport-security →max-age=31536000
transfer-encoding →chunked
vary →Accept-Encoding
x-ms-ags-diagnostic →{"ServerInfo":{"DataCenter":"Korea Central","Slice":"E","Ring":"2","ScaleUnit":"003","RoleInstance":"SE1PEPF00000A3F"}}
I also check if there is any move progress on exchange online via powershell
Get-MoveRequest | Format-List
But I got nothing.
- Will it be a temporary error for this mailbox?
- Why it does show any on exchange online via powershell's cmd Get-MoveRequest?
thanks.