Skip to content

Commit d62c06a

Browse files
Fixed change notification event types
Changed the event type property values based on the real event types that are returned in the payloads.
1 parent a60f60e commit d62c06a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

concepts/changenotifications-for-onlinemeeting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The following are the supported meeting events:
111111
"@odata.type":"#microsoft.graph.callevent",
112112
"@odata.id":"communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/meetingCallEvents",
113113
"id":"{notificationId}'",
114-
"eventType":"callStarted",
114+
"eventType":"Microsoft.Communication.CallStarted",
115115
"eventDateTime":"2022-02-28T00:00:00.0000000Z",
116116
}
117117

@@ -122,7 +122,7 @@ The following are the supported meeting events:
122122
"@odata.type":"#microsoft.graph.callevent",
123123
"@odata.id":"communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/meetingCallEvents",
124124
"id":"{notificationId}",
125-
"eventType":"callEnded",
125+
"eventType":"Microsoft.Communication.CallEnded",
126126
"eventDateTime":"2022-02-28T00:00:00.0000000Z",
127127
}
128128
```
@@ -133,7 +133,7 @@ The following are the supported meeting events:
133133
"@odata.type": "#microsoft.graph.callevent",
134134
"@odata.id": "communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/meetingCallEvents",
135135
"id": "{notificationId}",
136-
"eventType": "rosterUpdated",
136+
"eventType": "Microsoft.Communication.CallRosterUpdate",
137137
"eventDateTime": "2022-02-28T00:00:00.0000000Z",
138138
"participants@delta": [
139139
{
@@ -172,7 +172,7 @@ The following are the supported meeting events:
172172
"@odata.type": "#microsoft.graph.callevent",
173173
"@odata.id": "communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/meetingCallEvents",
174174
"id": "{notificationId}",
175-
"eventType": "rosterUpdated",
175+
"eventType": "Microsoft.Communication.CallRosterUpdate",
176176
"eventDateTime": "2022-02-28T00:00:00.0000000Z",
177177
"participants@delta": [
178178
{

0 commit comments

Comments
 (0)