Skip to content

Commit d354a8a

Browse files
authored
Merge branch 'main' into freshness-applications-concept
2 parents 33e0da3 + 3c2ae02 commit d354a8a

File tree

10 files changed

+381
-0
lines changed

10 files changed

+381
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
title: "callEvent resource type"
3+
description: "Contains information about a call event."
4+
author: "awang119"
5+
ms.localizationpriority: medium
6+
ms.subservice: "cloud-communications"
7+
ms.date: 12/03/2024
8+
doc_type: resourcePageType
9+
---
10+
11+
# callEvent resource type
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Contains information about a call event. The call can be a one-on-one or group ad-hoc call, a PSTN or VOIP call, or a scheduled active online meeting.
18+
19+
## Methods
20+
21+
None.
22+
23+
## Properties
24+
|Property|Type|Description|
25+
|:---|:---|:---|
26+
| callEventType | callEventType| The event type of the call. Possible values are: `callStarted`, `callEnded`, `unknownFutureValue`, `rosterUpdated`. You must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `rosterUpdated`.|
27+
| eventDateTime | DateTimeOffset | The time when event occurred. |
28+
| id | String | The unique identifier for the call event. |
29+
30+
## Relationships
31+
|Relationship|Type|Description|
32+
|:---|:---|:---|
33+
| participants | [participant](../resources/participant.md) collection| Participants collection for the call event. |
34+
35+
## JSON representation
36+
The following JSON representation shows the resource type.
37+
<!-- {
38+
"blockType": "resource",
39+
"keyProperty": "id",
40+
"@odata.type": "microsoft.graph.callEvent",
41+
"openType": false
42+
}
43+
-->
44+
``` json
45+
{
46+
"@odata.type": "#microsoft.graph.callEvent",
47+
"id": "String (identifier)",
48+
"callEventType": "String",
49+
"eventDateTime": "String (timestamp)",
50+
}
51+
```
52+
53+
## Related content
54+
55+
[Change notification for active meeting call events](/graph/changenotifications-for-onlinemeeting)
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: "emergencyCallerInfo resource type"
3+
description: "Contains information about an emergency caller."
4+
author: "awang119"
5+
ms.localizationpriority: medium
6+
ms.subservice: "cloud-communications"
7+
ms.date: 12/03/2024
8+
doc_type: resourcePageType
9+
---
10+
# emergencyCallerInfo resource type
11+
12+
Namespace: microsoft.graph
13+
14+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
15+
16+
Contains information about the emergency caller.
17+
18+
## Properties
19+
|Property|Type|Description|
20+
|:---|:---|:---|
21+
| displayName | String | The display name of the emergency caller. |
22+
| location | [location](../resources/location.md) | The location of the emergency caller. |
23+
| phoneNumber | String | The phone number of the emergency caller. |
24+
| tenantId | String | The tenant ID of the emergency caller. |
25+
| upn | String | The user principal name of the emergency caller. |
26+
27+
## Relationships
28+
None.
29+
30+
## JSON representation
31+
The following JSON representation shows the resource type.
32+
<!-- {
33+
"blockType": "resource",
34+
"@odata.type": "microsoft.graph.emergencyCallerInfo"
35+
}
36+
-->
37+
``` json
38+
{
39+
"@odata.type": "#microsoft.graph.emergencyCallerInfo",
40+
"displayName": "String",
41+
"upn": "String",
42+
"phoneNumber": "String",
43+
"tenantId": "String",
44+
"location": {
45+
"@odata.type": "microsoft.graph.location"
46+
}
47+
}
48+
```
49+
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
title: "emergencyCallEvent resource type"
3+
description: "Contains information about an emergency call event."
4+
author: "awang119"
5+
ms.localizationpriority: medium
6+
ms.subservice: "cloud-communications"
7+
ms.date: 12/03/2024
8+
doc_type: resourcePageType
9+
---
10+
11+
# emergencyCallEvent resource type
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Contains information about an emergency call event.
18+
19+
Inherits from [callEvent](../resources/callevent.md).
20+
21+
## Methods
22+
23+
None.
24+
25+
## Properties
26+
|Property|Type|Description|
27+
|:---|:---|:---|
28+
| callerInfo | [emergencyCallerInfo](../resources/emergencycallerinfo.md)| The information of the emergency caller. |
29+
| callEventType | callEventType| The event type of the call. Possible values are: `callStarted`, `callEnded`, `unknownFutureValue`, `rosterUpdated`. You must use the `Prefer: include-unknown-enum-members` request header to get the following value in this [evolvable enum](/graph/best-practices-concept#handling-future-members-in-evolvable-enumerations): `rosterUpdated`.|
30+
| emergencyNumberDialed | String | The emergency number dialed. |
31+
| eventDateTime | DateTimeOffset | The time of when event occurred. |
32+
| id | String | The entity ID. |
33+
| policyName | String | The policy name for emergency call event. |
34+
35+
## Relationships
36+
|Relationship|Type|Description|
37+
|:---|:---|:---|
38+
| participants | [participant](../resources/participant.md) collection| Participants aren't defined for emergency call events. Inherited from [microsoft.graph.callEvent](../resources/callevent.md). |
39+
40+
## JSON representation
41+
The following JSON representation shows the resource type.
42+
<!-- {
43+
"blockType": "resource",
44+
"keyProperty": "id",
45+
"@odata.type": "microsoft.graph.emergencyCallEvent",
46+
"baseType": "microsoft.graph.callEvent",
47+
"openType": false
48+
}
49+
-->
50+
``` json
51+
{
52+
"@odata.type": "#microsoft.graph.emergencyCallEvent",
53+
"id": "String (identifier)",
54+
"callEventType": "String",
55+
"eventDateTime": "String (timestamp)",
56+
"policyName": "String",
57+
"emergencyNumberDialed": "String",
58+
"callerInfo": {
59+
"@odata.type": "microsoft.graph.emergencyCallerInfo"
60+
}
61+
}
62+
```
63+
64+
## Related content
65+
66+
[Change notification for emergency call events](/graph/changenotifications-for-emergencycalls)

api-reference/beta/resources/enums.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4990,6 +4990,15 @@ Possible values for user account types (group membership), per Windows definitio
49904990
| all |
49914991
| unknownFutureValue |
49924992

4993+
### callEventType values
4994+
4995+
| Member |
4996+
| ------------------ |
4997+
| callStarted |
4998+
| callEnded |
4999+
| unknownFutureValue |
5000+
| rosterUpdated |
5001+
49935002
### restoreArtifactsBulkRequestStatus values
49945003

49955004
|Member|

api-reference/beta/toc/teamwork-and-communications/toc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,12 @@ items:
334334
href: ../../resources/addlargegalleryviewoperation.md
335335
- name: Get large gallery view operation status
336336
href: ../../api/addlargegalleryviewoperation-get.md
337+
- name: Call events
338+
items:
339+
- name: Call event
340+
href: ../../resources/callevent.md
341+
- name: Emergency call event
342+
href: ../../resources/emergencycallevent.md
337343
- name: Call records
338344
items:
339345
- name: Overview

api-reference/beta/toc/toc.mapping.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2933,6 +2933,13 @@
29332933
"addLargeGalleryViewOperation"
29342934
]
29352935
},
2936+
{
2937+
"name": "Call events",
2938+
"resources": [
2939+
"microsoft.graph.callEvent",
2940+
"microsoft.graph.emergencyCallEvent"
2941+
]
2942+
},
29362943
{
29372944
"name": "Call records",
29382945
"overview": "../../resources/callrecords-api-overview.md",

changelog/Microsoft.Skype.Calling.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
{
22
"changelog": [
3+
{
4+
"ChangeList": [
5+
{
6+
"Id": "e554e67c-d299-46dd-9402-77b676082897",
7+
"ApiChange": "Enumeration",
8+
"ChangedApiName": "callEventType",
9+
"ChangeType": "Addition",
10+
"Description": "Added the **callEventType** enumeration type.",
11+
"Target": "callEventType"
12+
},
13+
{
14+
"Id": "e554e67c-d299-46dd-9402-77b676082897",
15+
"ApiChange": "Resource",
16+
"ChangedApiName": "emergencyCallerInfo",
17+
"ChangeType": "Addition",
18+
"Description": "Added the [emergencyCallerInfo](https://learn.microsoft.com/en-us/graph/api/resources/emergencyCallerInfo?view=graph-rest-beta) resource.",
19+
"Target": "emergencyCallerInfo"
20+
},
21+
{
22+
"Id": "e554e67c-d299-46dd-9402-77b676082897",
23+
"ApiChange": "Resource",
24+
"ChangedApiName": "callEvent",
25+
"ChangeType": "Addition",
26+
"Description": "Added the [callEvent](https://learn.microsoft.com/en-us/graph/api/resources/callEvent?view=graph-rest-beta) resource.",
27+
"Target": "callEvent"
28+
},
29+
{
30+
"Id": "e554e67c-d299-46dd-9402-77b676082897",
31+
"ApiChange": "Resource",
32+
"ChangedApiName": "emergencyCallEvent",
33+
"ChangeType": "Addition",
34+
"Description": "Added the [emergencyCallEvent](https://learn.microsoft.com/en-us/graph/api/resources/emergencyCallEvent?view=graph-rest-beta) resource.",
35+
"Target": "emergencyCallEvent"
36+
}
37+
],
38+
"Id": "e554e67c-d299-46dd-9402-77b676082897",
39+
"Cloud": "Prod",
40+
"Version": "beta",
41+
"CreatedDateTime": "2025-01-10T20:21:16.9977147Z",
42+
"WorkloadArea": "Cloud communications",
43+
"SubArea": "Call"
44+
},
345
{
446
"ChangeList": [
547
{

0 commit comments

Comments
 (0)