Skip to content

Commit ce8acbb

Browse files
authored
Merge branch 'main' into bring-townhall-and-external-properties-to-GA
2 parents 65def45 + 00991ef commit ce8acbb

File tree

6 files changed

+69
-9
lines changed

6 files changed

+69
-9
lines changed

api-reference/beta/api/attendancerecord-list.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,11 @@ Content-Type: application/json
366366
"leaveDateTime": "2021-10-05T04:43:49.7702391Z",
367367
"durationInSeconds": 322
368368
}
369-
]
369+
],
370+
"externalRegistrationInformation": {
371+
"referrer": "Facebook",
372+
"registrationId": "myExternalRegistrationId"
373+
},
370374
},
371375
{
372376
"emailAddress": "lisa.adkins@contoso.com",
@@ -384,7 +388,11 @@ Content-Type: application/json
384388
"leaveDateTime": "2021-10-04T23:18:57.5639338Z",
385389
"durationInSeconds": 314
386390
}
387-
]
391+
],
392+
"externalRegistrationInformation": {
393+
"referrer": "Facebook",
394+
"registrationId": "anotherExternalRegistrationId"
395+
},
388396
}
389397
]
390398
}

api-reference/beta/api/meetingattendancereport-get.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,12 @@ Content-Type: application/json
403403
"id": "b76965d4-0763-496e-9980-b323c5f3aa3b",
404404
"totalParticipantCount": 2,
405405
"meetingStartDateTime": "2021-10-04T23:13:31.658Z",
406-
"meetingEndDateTime": "2021-10-04T23:18:57.563Z"
406+
"meetingEndDateTime": "2021-10-04T23:18:57.563Z",
407+
"externalEventInformation": [
408+
{
409+
"applicationId" : "67a527ba-ef0e-4ba2-88b6-4fa5e9711757",
410+
"externalEventId": "myExternalEventId"
411+
}
412+
]
407413
}
408414
```

api-reference/beta/api/meetingattendancereport-list.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,13 +232,25 @@ Content-Type: application/json
232232
"id": "c9b6db1c-d5eb-427d-a5c0-2022d7",
233233
"totalParticipantCount": 1,
234234
"meetingStartDateTime": "2021-10-05T04:38:23.945Z",
235-
"meetingEndDateTime": "2021-10-05T04:43:49.77Z"
235+
"meetingEndDateTime": "2021-10-05T04:43:49.77Z",
236+
"externalEventInformation": [
237+
{
238+
"applicationId" : "67a527ba-ef0e-4ba2-88b6-4fa5e9711757",
239+
"externalEventId": "myExternalEventId"
240+
}
241+
]
236242
},
237243
{
238244
"id": "2c2c2454-7613-4d6e-9c7c-4ce89",
239245
"totalParticipantCount": 2,
240246
"meetingStartDateTime": "2021-10-04T23:13:31.658Z",
241-
"meetingEndDateTime": "2021-10-04T23:18:57.563Z"
247+
"meetingEndDateTime": "2021-10-04T23:18:57.563Z",
248+
"externalEventInformation": [
249+
{
250+
"applicationId" : "e3c6e27c-e2a1-4212-8d63-0729828ed4fa",
251+
"externalEventId": "anotherExternalEventId"
252+
}
253+
]
242254
}
243255
]
244256
}

api-reference/beta/resources/attendancerecord.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Contains information associated with an attendance record in a [meetingAttendanc
2828
|:--------------------|:--------|:-----------|
2929
| attendanceIntervals | [attendanceInterval](attendanceinterval.md) collection | List of time periods between joining and leaving a meeting. |
3030
| emailAddress | String | Email address of the user associated with this attendance record. |
31+
| externalRegistrationInformation | [virtualEventExternalRegistrationInformation](../resources/virtualeventexternalregistrationinformation.md) | The external information for a virtual event registration. |
3132
| identity | [identity](identity.md) | Identity of the user associated with this attendance record. The specific type will be one of the following derived types of [identity](identity.md), depending on the type of the user: [communicationsUserIdentity](communicationsUserIdentity.md), [azureCommunicationServicesUserIdentity](azureCommunicationServicesUserIdentity.md). |
3233
| role | String | Role of the attendee. Possible values are: `None`, `Attendee`, `Presenter`, and `Organizer`. |
3334
| registrantId | String | Unique identifier of a [meetingRegistrant](meetingregistrantbase.md). Presents when the participant has registered for the meeting. (deprecated) |
@@ -64,6 +65,11 @@ The following JSON representation shows the resource type.
6465
{
6566
"@odata.type": "#microsoft.graph.attendanceInterval"
6667
}
67-
]
68+
],
69+
"externalRegistrationInformation": {
70+
"@odata.type": "#microsoft.graph.virtualEventExternalRegistrationInformation",
71+
"referrer": "String",
72+
"registrationId": "String"
73+
}
6874
}
6975
```

api-reference/beta/resources/meetingattendancereport.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Meeting attendance reports are online meeting artifacts. For details, see [Onlin
2929

3030
| Property | Type | Description |
3131
|:----------------------|:---------------------------------------------------|:--------------------------------|
32+
| externalEventInformation | [virtualEventExternalInformation](../resources/virtualeventexternalinformation.md) collection | The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only. |
3233
| id | String | Unique identifier for the attendance report. Read-only. |
3334
| meetingEndDateTime | DateTimeOffset | UTC time when the meeting ended. Read-only. |
3435
| meetingStartDateTime | DateTimeOffset | UTC time when the meeting started. Read-only. |
@@ -60,6 +61,7 @@ The following JSON representation shows the resource type.
6061
"meetingEndDateTime": "String (timestamp)",
6162
"meetingStartDateTime": "String (timestamp)",
6263
"totalParticipantCount": "Int32",
64+
"externalEventInformation": [{"@odata.type": "microsoft.graph.virtualEventExternalInformation"}],
6365

6466
"attendanceRecords": [{"@odata.type": "#microsoft.graph.attendanceRecord"}]
6567
}

changelog/Microsoft.Skype.Calling.json

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,32 @@
9090
"WorkloadArea": "Teamwork and communications",
9191
"SubArea": "Calls and online meetings"
9292
},
93+
{
94+
"ChangeList": [
95+
{
96+
"Id": "a7978bef-d6bb-4083-81f9-c746c2f05197",
97+
"ApiChange": "Property",
98+
"ChangedApiName": "externalEventInformation",
99+
"ChangeType": "Addition",
100+
"Description": "Added the **externalEventInformation** property to the [meetingAttendanceReport](https://learn.microsoft.com/en-us/graph/api/resources/meetingattendancereport?view=graph-rest-beta) resource.",
101+
"Target": "meetingAttendanceReport"
102+
},
103+
{
104+
"Id": "a7978bef-d6bb-4083-81f9-c746c2f05197",
105+
"ApiChange": "Property",
106+
"ChangedApiName": "externalRegistrationInformation",
107+
"ChangeType": "Addition",
108+
"Description": "Added the **externalRegistrationInformation** property to the [attendanceRecord](https://learn.microsoft.com/en-us/graph/api/resources/attendancerecord?view=graph-rest-beta) resource.",
109+
"Target": "attendanceRecord"
110+
}
111+
],
112+
"Id": "a7978bef-d6bb-4083-81f9-c746c2f05197",
113+
"Cloud": "Prod",
114+
"Version": "beta",
115+
"CreatedDateTime": "2024-12-18T00:00:00Z",
116+
"WorkloadArea": "Teamwork and communications",
117+
"SubArea": "Calls and online meetings"
118+
},
93119
{
94120
"ChangeList": [
95121
{
@@ -164,10 +190,10 @@
164190
"WorkloadArea": "Teamwork and communications",
165191
"SubArea": "Calls and online meetings"
166192
},
167-
{
193+
{
168194
"ChangeList": [
169-
{
170-
"Id": "cc96a0af-ec29-4b9d-9d42-8d3dd6532aff",
195+
{
196+
"Id": "cc96a0af-ec29-4b9d-9d42-8d3dd6532aff",
171197
"ApiChange": "Resource",
172198
"ChangedApiName": "virtualEventExternalInformation",
173199
"ChangeType": "Addition",

0 commit comments

Comments
 (0)