Skip to content

Commit 69d8431

Browse files
authored
Merge pull request #266305 from joffei/main
CTE Documentation Update
2 parents 90e5da0 + 8fcbb2f commit 69d8431

File tree

6 files changed

+150
-226
lines changed

6 files changed

+150
-226
lines changed

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-android.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ A set of permissions is required for the Android application in order to be able
2323
## Overview
2424
Mobile push notifications are the pop-up notifications you see on mobile devices. For calling, we'll be focusing on VoIP (Voice over Internet Protocol) push notifications. We'll register for push notifications, handle push notifications, and then un-register push notifications.
2525

26+
> [!NOTE]
27+
> To Register for Push Notifications and handling of the Push Notifications for a Custom Teams Endpoint (CTE) the API's are the same. The API's described below can also be invoked on the `CommonCallAgent` or `TeamsCallAgent` class for Custom Teams Endpoint (CTE).
28+
2629
## Register for push notifications
2730

2831
To register for push notifications, the application needs to call `registerPushNotification()` on a `CallAgent` instance with a device registration token.
@@ -146,4 +149,4 @@ try {
146149
catch(Exception e) {
147150
System.out.println("Something went wrong while un-registering for all Incoming Calls Push Notifications.")
148151
}
149-
```
152+
```

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-ios.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ ms.author: rifox
77
---
88
[!INCLUDE [Install SDK](../install-sdk/install-sdk-ios.md)]
99

10+
## Overview
11+
Mobile push notifications are the pop-up notifications you see on mobile devices. For calling, we'll be focusing on VoIP (Voice over Internet Protocol) push notifications. We'll register for push notifications, handle push notifications, and then un-register push notifications. For a guide on CallKit integration in your iOS application, refer here, [CallKit integration with iOS ACS SDK](../../callkit-integration.md).
12+
13+
> [!NOTE]
14+
> To Register for Push Notifications and handling of the Push Notifications for a Custom Teams Endpoint (CTE) the APIs are the same. The APIs described can also be invoked on the `CommonCallAgent` or `TeamsCallAgent` class for Custom Teams Endpoint (CTE).
15+
1016
## Set up push notifications
1117

1218
A mobile push notification is the pop-up notification that you get in the mobile device. For calling, we'll focus on VoIP (voice over Internet Protocol) push notifications.
@@ -65,4 +71,4 @@ callAgent.unregisterPushNotification { (error) in
6571
print("Unregister of push notification failed, please try again")
6672
}
6773
}
68-
```
74+
```

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-windows.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ ms.author: jsaurezlee
77
---
88
[!INCLUDE [Install SDK](../install-sdk/install-sdk-windows.md)]
99

10+
## Overview
11+
Push notifications on Windows platform are delivered using `Windows Push Notification Service (WNS),`.
12+
13+
> [!NOTE]
14+
> To Register for Push Notifications and handling of the Push Notifications for a Custom Teams Endpoint (CTE) the API's are the same. The API's described below can also be invoked on the `CommonCallAgent` or `TeamsCallAgent` class for Custom Teams Endpoint (CTE).
15+
1016
## Set up push notifications
1117

1218
A push notification is the pop-up notification that you get in your device. For calling, we'll focus on VoIP (voice over Internet Protocol) push notifications.

0 commit comments

Comments
 (0)