I had a webhook listening to VersionModified for files on a folder.
I was tracking reviews approvals checking the payload body to see if the revision was approved or not.
var reviewInfo = body.payload.CustomMetadata.DmSysApproveState?.ToString();
if (reviewInfo == null || !reviewInfo.Contains("\"label\":\"Approved\"")) return Ok();
Since this week, that information is not longer available in the payload.
Are there other way to know the status of an issue in ACC/BIM360?