Skip to content

Commit 58d1765

Browse files
Merge pull request #28919 from MicrosoftDocs/main
[AutoPublish] main to live - 07/11 10:32 PDT | 07/11 23:02 IST
2 parents f7ccfd6 + 2d2d12c commit 58d1765

9 files changed

Lines changed: 289 additions & 129 deletions

copilot/employee-self-service/servicenow-hrsd-itsm.md

Lines changed: 85 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Refer to the ESS Agent deployment guide for installation of the agent and subscr
7373
| **Application Developer** (*minimum privileged role*) | User who can register an application | Create an App registration - *if using Microsoft Entra OAuth for ServiceNow connector* | Microsoft 365 Admin Center |
7474
| **Environment Maker** | User who can customize ESS Agent | Configure & Customize ESS Agent | Microsoft Copilot Studio |
7575

76-
### ServiceNow configuration
76+
## ServiceNow configuration
7777

7878
This section outlines the tasks required to be configured in ServiceNow by an administrator. ServiceNow integration supports three types of authentications as follows:
7979

@@ -88,7 +88,86 @@ This section outlines the tasks required to be configured in ServiceNow by an ad
8888
> [!TIP]
8989
> Without elevating access, the new security objects can't be created. If **New** button in the top right of configuration pane is missing, then the role isn't elevated to "`security_admin`”.
9090
91-
#### Option 1: Using OAuth2 authentication - Create an OAuth Application Registry
91+
### Basic authentication
92+
93+
This method of authentication involves a ServiceNow username and password to authenticate API requests. This method is simple to use and is primarily suggested for testing purposes, as it offers lower security compared to other authentication methods.
94+
95+
### Microsoft EntraID OAuth using Certificate
96+
97+
This authentication uses app tokens, allowing a registered Entra ID application to access ServiceNow with a token specifying the ServiceNow Entra ID app as the resource.
98+
99+
#### Task 1: Register an application in Microsoft Entra ID for OIDC integration with ServiceNow
100+
101+
[Learn how to register an app in Microsoft Entra ID.](/entra/identity-platform/quickstart-register-app)
102+
103+
1. Sign into the Microsoft Entra admin portal as a global administrator or cloud app administrator.
104+
1. Go to **Applications** then **App registrations**.
105+
1. Select **New registration.**
106+
1. In the new registration form, fill in the following fields:
107+
1. **Name:** Any name that represents the purpose of app registratio
108+
1. **Redirect URL:** Not needed
109+
1. Choose **Register** to complete the creation of the new app registration.
110+
1. Select **Token configuration** then **Add optional claim** for adding claims setting.
111+
1. Select **Token type** as **Access** and choose the following claims:
112+
1. *aud* - for audience validation
113+
1. *email* - addressable email for user
114+
1. *upn* - an identifier for the user
115+
1. Select **Add** to complete adding the claims.
116+
1. If this is the first time OpenId Connect being setup using claims like email, upn, there’ll be a confirmation to turn on the Microsoft Graph permissions, please check the box and select **Add**.
117+
1. This flow completes the Microsoft Entra piece of configuration.
118+
119+
#### Task 2: Register OIDC provider in ServiceNow
120+
121+
1. Login to the ServiceNow instance that needs to be integrated with ESS Agent.
122+
1. Elevate access permissions using **Elevate role**. Refer to the section **Error! Reference source not found.** – only the first part and not the tasks.
123+
1. Click **All** in the top navigation bar.
124+
1. Search for “OAuth” in the search box within dropdown navigation menu.
125+
1. Select **System OAuth à Application Registry** from the search results (if you don’t see this option, then you don’t have sufficient privileges).
126+
1. Select **New** in the configuration section pane.
127+
1. Select **Configure an OIDC provider to verify ID tokens**.
128+
1. Fill in the following information for the new application registry:
129+
130+
|Configuration |Description |
131+
|--------------|------------|
132+
|Name |a meaningful name to identify that this OIDC provider was created for ESS Agent |
133+
|Client ID |The client ID of Entra Application created in Task 1 above |
134+
|Client secret |This value will not be used; can be any value |
135+
|OAuth OIDC provider configuration |Add a new OIDC provider configuration by selecting the search icon and choosing **New** in the search popup. Fill in the fields as follows:</br> **OIDC Provider:** A name that represents the Microsoft Entra tenant from task 1 above.</br> **OIDC Metadata URL:** `login.microsoftonline.com/<tenant ID>/.well-known/openid-configuration`</br> Replace < tenant ID > with the Entra tenant ID from task 1 above.</br> **OIDC Configuration Cache Life Span:** 120</br> **Application:** Global</br> **User Claim:** oid</br> **User Field:** User ID</br> **Enable JTI claim verification:** disabled</br> Select **Submit** and update the OIDC Entity form. |
136+
137+
#### Task 3: Register an Application in Microsoft Entra ID for connector usage
138+
139+
This is the application which plays the role of a user with elevated permissions in the ServiceNow instance.
140+
141+
1. Login to Entra administration portal as global administrator (or) cloud app administrator.
142+
1. Go to **Applications** > **App registrations**.
143+
1. Select **New registration**.
144+
1. In the new registration form, fill in the following fields:.
145+
1. **Name:** any name that represents the purpose of app registration.
146+
2. **Redirect URI:** Not needed.
147+
1. Click **Register** to complete the creation of new app registration.
148+
1. Select **Certificates & secrets** then upload the .cer file of the certificate. In case of SNI certificate, just add trustedCertificateSubjects in the manifest of the application with the relevant authorityId and subjectName.
149+
150+
#### Task 4: Create a System User in ServiceNow
151+
152+
This is the Application created in the above task 3 which is a user in ServiceNow instance.
153+
154+
Go to **User Administration** > **Users** to create a new user.
155+
156+
**User ID:** The object ID of the service principal of Application created in Task 3 above.
157+
158+
Check **Web service access only**.
159+
160+
### Microsoft Entra ID OAuth User Login
161+
162+
This is user-token based authentication where the end user can sign into Entra ID 1st party application i.e. ServiceNow connector 1st party app and get an access token with scope for the ServiceNow representative Entra ID app.
163+
164+
Perform Task 1 & Task 2 from the previous section Microsoft Entra ID OAuth using Certificate.
165+
166+
In the Task 1 – add the 1st party application i.e., ServiceNow connector to the permission scope – Client ID = c26b24aa-7874-4e06-ad55-7d06b1f79b63.
167+
168+
In the Task 2 – update the user claim to upn or any other custom claim property from the token in ServiceNow. The user field should match the ServiceNow system user table field containing the upn or user ID.
169+
170+
### Using OAuth2 authentication - Create an OAuth Application Registry
92171

93172
1. Log in to the ServiceNow instance that needs to be integrated with ESS Agent.
94173
2. Elevate access permissions using **Elevate role**.
@@ -104,7 +183,7 @@ This section outlines the tasks required to be configured in ServiceNow by an ad
104183
| **Name** | a meaningful name to identify that this application registry is created for ESS Agent |
105184
| **Client ID** | autogenerated code <br><div class="alert">**Note**</br>This value is used in Microsoft 365 Copilot Connector configuration, if no Advanced Scripting is used. |
106185
| **Client Secret** | leave it blank to automatically generate a string <br><div class="alert">**Note**</br>This value is used in Microsoft 365 Copilot Connector configuration, if no Advanced Scripting is used. |
107-
| **Redirect URL** | a required callback URL that the authorization server redirects to </br>For Microsoft 365 Enterprise:</br>`https://gcs.office.com/v1.0/admin/oauth/callback`</br>For Microsoft 365 Government:</br>`https://gcsgcc.office.com/v1.0/admin/oauth/callback`|
186+
| **Redirect URL** | a required callback URL that the authorization server redirects to </br>For Microsoft 365 Enterprise:</br>`https://gcs.office.com/v1.0/admin/oauth/callback`</br>For Microsoft 365 Government:</br>`https://gcsgcc.office.com/v1.0/admin/oauth/callback` Refer to the note after the table for more information.|
108187
| **Logo URL** | A URL that contains the image for the application logo |
109188
| **Active** | Set to active |
110189
| **Refresh token lifespan** | The number of seconds that a refresh token is valid. </br>By default, refresh tokens expire in 100 days (8,640,000 seconds). Recommended value is 31,536,000 (one year) |
@@ -113,6 +192,9 @@ This section outlines the tasks required to be configured in ServiceNow by an ad
113192
| **Accessible from** | All application scopes |
114193
| **Client Type** | Integration as a Service |
115194

195+
>[!NOTE]
196+
>[Please use the actual callback URL from the sign-in popup window during connection configuration by following the steps below, when the URL redirection fails with the error **Invalid redirect_uri**:</br> Copy/paste the complete URL from the authorization popup window</br> Extract redirect_uri parameter.</br> Example: `redirect_uri=https%3a%2f%2ftip1-shared.consent.azure-apim.net%2fredirect`</br> After decoding the URL – replacing %3a with : and %2f with /</br> Update the Redirect URL field.]
197+
116198
9. Select **Submit** or **Update** button to save the changes.
117199

118200
### Install ServiceNow HRSD extension pack

copilot/manage-public-web-access.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ ms.date: 06/27/2025
2121

2222
Microsoft 365 Copilot and [Microsoft 365 Copilot Chat](/copilot/overview) have an optional feature that allows Copilot to reference web content when responding to user prompts. Allowing Microsoft 365 Copilot and Microsoft 365 Copilot Chat to reference web content improves the quality of Copilot responses by grounding them in the latest information from the web.
2323

24+
> [!NOTE]
25+
> This article concerns the web search functionality in Microsoft 365 Copilot and Microsoft 365 Copilot Chat. Microsoft 365 **Copilot Search** is an additional, universal search experience that allows users with a Microsoft 365 Copilot license to search across all their Microsoft 365 and third-party data sources. Learn more about [Microsoft 365 Copilot Search]( /copilot/microsoft-365/microsoft-365-copilot-search).
26+
2427
## Web search
2528

2629
When web search is enabled, Microsoft 365 Copilot and Microsoft 365 Copilot Chat may fetch information from the Bing search service when information from the web helps to provide a better, more grounded response. Admin controls and a user-level **Web content** toggle (only for Microsoft 365 Copilot) are available to [manage whether web search is enabled](#controls-available-to-manage-web-search) in your environment.

copilot/microsoft-365-copilot-overview.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Microsoft 365 Copilot:
5757

5858
- Uses content in [Microsoft Graph](/graph/overview) to personalize the responses with a user's work emails, chats, and documents. Copilot only shows the data that users have permission to access.
5959

60+
- Includes [Microsoft 365 Copilot Search](/copilot/microsoft-365/microsoft-365-copilot-search), a universal search experience that allows users to search across all their Microsoft 365 and third-party data sources to find what they need quickly.
61+
6062
- Coordinates large language models (LLMs). LLMs are a type of artificial intelligence (AI) algorithms. These algorithms use deep learning techniques and data sets to understand, summarize, predict, and generate content.
6163

6264
The LLMs include pretrained models, like Generative Pre-Trained Transformers, like GPT-4, that are designed for these tasks. To learn more about Generative Pre-Trained Transformers (GPT), ask [Copilot](https://copilot.microsoft.com).
@@ -65,6 +67,7 @@ To learn more, see:
6567

6668
- [Microsoft 365 Copilot architecture and how it works](microsoft-365-copilot-architecture.md)
6769
- [Microsoft 365 Copilot service description](/office365/servicedescriptions/office-365-platform-service-description/microsoft-365-copilot)
70+
- [Microsoft 365 Copilot Search overview](/copilot/microsoft-365/microsoft-365-copilot-search)
6871
- Video: [Copilot system explained by Microsoft](https://www.youtube.com/watch?v=E5g20qmeKpg)
6972
- Video: [Microsoft 365 Copilot, LLMs, and your apps](https://www.youtube.com/watch?v=B2-8wrF9Okc)
7073
- Video: [How to get ready for Microsoft 365 Copilot](https://aka.ms/M365CopilotAdmin)
@@ -87,6 +90,12 @@ With Microsoft 365 Copilot Chat, you can draft content, review what you missed,
8790

8891
You can use Microsoft 365 Copilot Chat in Microsoft Teams, in the Microsoft 365 Copilot Chat app, at [Microsoft365.com](https://www.microsoft365.com/), and at [copilot.microsoft.com](https://copilot.microsoft.com/).
8992

93+
**Microsoft 365 Copilot Search**
94+
95+
Copilot Search is an AI-powered universal search experience across all your Microsoft 365 applications and non-Microsoft data sources. It's integrated with Microsoft 365 Copilot, so users can find the results they need with search, then seamlessly transition to chat for deeper exploration or follow-up task completion.
96+
97+
Learn more about [Copilot Search](/copilot/microsoft-365/microsoft-365-copilot-search).
98+
9099
**Microsoft Graph**
91100

92101
Microsoft Graph includes information on users, their activities, and the organization data they can access. The Microsoft Graph API brings a personalized context into the prompt, like information from a user's emails, chats, documents, and meetings.

microsoft-365/lti/TOC.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ items:
77
href: browser-cookies.md
88
- name: Canvas integrations
99
items:
10+
- name: Deploy Microsoft 365 LTI in Canvas
11+
href: microsoft-365-lti-canvas.md
1012
- name: Use Microsoft OneDrive LTI with Canvas
1113
href: onedrive-lti.md
1214
- name: Use Microsoft Teams Assignments with Canvas
1315
href: teams-assignments-with-canvas.md
14-
- name: Use Microsoft Teams classes with Canvas
16+
- name: Use Microsoft Teams with Canvas
1517
href: teams-classes-with-canvas.md
16-
- name: Use Microsoft Teams meetings with Canvas
17-
href: teams-meetings-with-canvas.md
1818
- name: Use Microsoft Reflect LTI with Canvas
1919
href: reflect-lti-canvas.md
2020
- name: Blackboard integrations
@@ -23,9 +23,7 @@ items:
2323
href: onedrive-lti-blackboard.md
2424
- name: Use Microsoft Teams Assignments with Blackboard
2525
href: teams-assignments-with-blackboard.md
26-
- name: Use Microsoft Teams meetings with Blackboard Learn
27-
href: teams-meetings-with-blackboard-learn.md
28-
- name: Use Microsoft Teams classes with Blackboard Learn Ultra
26+
- name: Use Microsoft Teams with Blackboard Learn Ultra
2927
href: teams-classes-with-blackboard.md
3028
- name: Use Microsoft Reflect LTI with Blackboard Learn
3129
href: reflect-lti-blackboard.md
@@ -35,24 +33,18 @@ items:
3533
href: moodle-plugin-configuration.md
3634
- name: Use Microsoft Teams Assignments with Moodle
3735
href: teams-assignments-with-moodle.md
38-
- name: Use Microsoft Teams classes and meetings with Moodle
39-
href: teams-classes-meetings-with-moodle.md
4036
- name: Use Microsoft Reflect LTI with Moodle
4137
href: reflect-lti-moodle.md
4238
- name: Open LMS integrations
4339
items:
4440
- name: Set up and configure the Moodle plugin for Open LMS
4541
href: open-lms-plugin-configuration.md
46-
- name: Use Microsoft Teams classes and meetings with Open LMS
47-
href: open-lms-teams-classes-and-meetings.md
4842
- name: D2L Brightspace integrations
4943
items:
5044
- name: Use Microsoft OneDrive LTI with Brightspace
5145
href: onedrive-lti-brightspace.md
5246
- name: Use Microsoft Teams Assignments with Brightspace
5347
href: teams-assignments-with-brightspace.md
54-
- name: Use Microsoft Teams classes and meetings with Brightspace
55-
href: teams-classes-meetings-with-brightspace.md
5648
- name: Use Microsoft Reflect LTI with D2L Brightspace
5749
href: reflect-lti-brightspace.md
5850
- name: Schoology Learning integrations
@@ -61,14 +53,10 @@ items:
6153
href: onedrive-lti-schoology.md
6254
- name: Use Microsoft Teams Assignments with Schoology Learning
6355
href: teams-assignments-with-schoology.md
64-
- name: Use Microsoft Teams meetings with Schoology Learning
65-
href: teams-classes-and-meetings-with-schoology.md
6656
- name: Use Microsoft Reflect LTI with Schoology Learning
6757
href: reflect-lti-schoology.md
6858
- name: Other LMS integrations
6959
items:
70-
- name: Use Microsoft Teams Meetings LTI with any LTI 1.3 compliant LMS
71-
href: integrate-with-other-lms.md
7260
- name: Use Microsoft Teams Assignments LTI with any LTI 1.3 compliant LMS
7361
href: teams-assignments-with-other-lms.md
7462

0 commit comments

Comments
 (0)