From 02d1192e1485039d5b7743beebc03e38d0473a71 Mon Sep 17 00:00:00 2001 From: Pete Heidler Date: Wed, 10 Jun 2026 12:17:52 -0700 Subject: [PATCH 1/2] Update /chat and /chatOverStream endpoint in docs --- docs/work-iq/rest/copilotconversation-chat.md | 12 ++++++------ .../rest/copilotconversation-chatoverstream.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/work-iq/rest/copilotconversation-chat.md b/docs/work-iq/rest/copilotconversation-chat.md index e45d1ebb..686c794f 100644 --- a/docs/work-iq/rest/copilotconversation-chat.md +++ b/docs/work-iq/rest/copilotconversation-chat.md @@ -4,7 +4,7 @@ description: Continue synchronous conversations with the Work IQ Chat API. author: marina-hayrapetyan ms.author: mhayrapetyan ms.topic: reference -ms.date: 05/15/2026 +ms.date: 06/10/2026 ms.localizationpriority: medium doc_type: apiPageType --- @@ -33,7 +33,7 @@ This documentation covers continuing synchronous Copilot conversations using the ## HTTP request ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/{conversationId}/chat +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/{conversationId}/chat ``` ## Request headers @@ -71,7 +71,7 @@ The following example shows how to send a prompt to the Chat API using the synch The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat Content-Type: application/json { @@ -177,7 +177,7 @@ The following example shows how to use a OneDrive or SharePoint file as context The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat Content-Type: application/json { @@ -280,7 +280,7 @@ The following example shows how to toggle off web search grounding when sending The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat Content-Type: application/json { @@ -360,7 +360,7 @@ The following example shows how to send more context with a chat message to the The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/0d110e7e-2b7e-4270-a899-fd2af6fde333/chat Content-Type: application/json { diff --git a/docs/work-iq/rest/copilotconversation-chatoverstream.md b/docs/work-iq/rest/copilotconversation-chatoverstream.md index 64670e6f..caf52ef1 100644 --- a/docs/work-iq/rest/copilotconversation-chatoverstream.md +++ b/docs/work-iq/rest/copilotconversation-chatoverstream.md @@ -4,7 +4,7 @@ description: Continue streamed conversations with the Work IQ Chat API. author: marina-hayrapetyan ms.author: mhayrapetyan ms.topic: reference -ms.date: 05/15/2026 +ms.date: 06/10/2026 ms.localizationpriority: medium doc_type: apiPageType --- @@ -33,7 +33,7 @@ This documentation covers continuing streamed Copilot conversations using the Ch ## HTTP request ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/{conversationId}/chatOverStream +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/{conversationId}/chatOverStream ``` ## Request headers @@ -71,7 +71,7 @@ The following example shows how to send a prompt to the Chat API using the strea The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream Content-Type: application/json { @@ -271,7 +271,7 @@ The following example shows how to use a OneDrive or SharePoint file as context The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream Content-Type: application/json { @@ -458,7 +458,7 @@ The following example shows how to toggle off web search grounding when sending The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream Content-Type: application/json { @@ -623,7 +623,7 @@ The following example shows how to send more context with a chat message to the The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations/d0f6bffa-49d4-43c6-b93b-e7183f92b765/chatOverStream Content-Type: application/json { From 236e9690797efa5f5839d0f26ce018c16ab91854 Mon Sep 17 00:00:00 2001 From: Pete Heidler Date: Wed, 10 Jun 2026 12:24:24 -0700 Subject: [PATCH 2/2] Update /conversations endpoint --- docs/work-iq/rest/copilotroot-post-conversations.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/work-iq/rest/copilotroot-post-conversations.md b/docs/work-iq/rest/copilotroot-post-conversations.md index 056836a3..c1a2b3f2 100644 --- a/docs/work-iq/rest/copilotroot-post-conversations.md +++ b/docs/work-iq/rest/copilotroot-post-conversations.md @@ -4,7 +4,7 @@ description: Use the Work IQ Chat API to integrate Microsoft 365 Copilot into yo author: marina-hayrapetyan ms.author: mhayrapetyan ms.topic: reference -ms.date: 05/15/2026 +ms.date: 06/10/2026 ms.localizationpriority: medium doc_type: apiPageType --- @@ -33,7 +33,7 @@ This documentation covers creating Copilot conversations using the Chat API. Lea ## HTTP request ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations ``` ## Request headers @@ -60,7 +60,7 @@ The following example shows how to create a Copilot conversation through the Wor The following example shows the request. ```http -POST https://workiq.svc.cloud.microsoft/rest/beta/copilot/conversations +POST https://workiq.svc.cloud.microsoft/rest/beta/conversations Content-Type: application/json {}