From 1f8996ec6faed9386d6f1f5e5802942d11393db7 Mon Sep 17 00:00:00 2001 From: ReidCarlberg Date: Tue, 22 Apr 2025 14:42:53 -0600 Subject: [PATCH] Update spe-da-adv.md The -OwningApplicationId is a UUID format, and in the example it was just 8 random characters, which wasn't clear. --- docs/embedded/development/declarative-agent/spe-da-adv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/embedded/development/declarative-agent/spe-da-adv.md b/docs/embedded/development/declarative-agent/spe-da-adv.md index 2a04298bd7..4453943486 100644 --- a/docs/embedded/development/declarative-agent/spe-da-adv.md +++ b/docs/embedded/development/declarative-agent/spe-da-adv.md @@ -52,7 +52,7 @@ Connect-SPOService "https://-admin.sharepoint.com" # Login with your admin account. ... -Set-SPOApplication -OwningApplicationId 423poi45 -CopilotEmbeddedChatHosts "http://localhost:3000 https://contoso.sharepoint.com https://fabrikam.com" +Set-SPOApplication -OwningApplicationId XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX -CopilotEmbeddedChatHosts "http://localhost:3000 https://contoso.sharepoint.com https://fabrikam.com" # This will set the container type configuration “CopilotEmbeddedChatHosts” accordingly. ...