Skip to content

Conversation

Copy link

Copilot AI commented Nov 17, 2025

The connector inventory flow (Admin | Sync Template v3 (Connectors)) was missing three built-in connectors visible in Power Platform Admin Center DLP policies. The Get-Connectors API doesn't return all built-in connectors—especially trigger-only and specialty connectors not explicitly used in an environment.

Changes

Added three connectors to the Specialty Connectors section:

  • Dynamics 365 Marketing (shared_dynamics365marketing)
  • Dynamics 365 Marketing V2 (shared_dynamics365marketingv2)
  • Chat without Microsoft Entra ID authentication in Copilot Studio (shared_virtualagent)

Updated both flow variants:

  • CenterofExcellenceCoreComponents: Added full check/update/create logic following existing pattern
  • CenterofExcellenceCoreComponentsTeams: Added simplified check/add logic matching Teams implementation

Pattern

Each connector follows the existing specialty connector pattern:

"List_Dynamics365Marketing": {
  "type": "OpenApiConnection",
  "inputs": {
    "parameters": {
      "$filter": "admin_id eq '/providers/Microsoft.PowerApps/apis/shared_dynamics365marketing'"
    }
  }
},
"insert_or_update_Dynamics365Marketing": {
  "type": "If",
  "expression": {
    "greater": ["@length(outputs('List_Dynamics365Marketing')?['body/value'])", 0]
  },
  "actions": {
    "Update_Dynamics365Marketing": { /* update existing */ }
  },
  "else": {
    "actions": {
      "Add_Dynamics365Marketing": { /* create new */ }
    }
  }
}

Note

Two reported connectors already exist as HttpRequestReceived and TeamsWebhook. Display names differ slightly from Admin Center but functionality is captured correctly.

Original prompt

This section details on the original issue you should resolve

<issue_title>[CoE Starter Kit - BUG] Built-In Connectors Not Being Captured in Connector Table</issue_title>
<issue_description>### Does this bug already exist in our backlog?

  • I have checked and confirm this is a new bug.

Describe the issue

Image Hi, we're implementing DLP Policy's at present & discovered that there seems to be a number of (not all) Built-In Class Connectors that don't appear within the Connectors table within the CoE.

Comparing the Connectors table of CoE to Power Platform Admin Centre > Security > Data Policy, we've noticed the following missing:
Dynamics 365 Marketing V2
Dynamics 365 Marketing
When a HTTP request is received
When a Teams webhook request is received
Chat without Microsoft Entra ID authentication in Copilot Studio

We initially thought it was just due to these connectors not being used within our environment, however other connectors are listed in the connectors table with 0 Apps / Flows assigned.

Any idea what this could be?
Thanks

Expected Behavior

No response

What solution are you experiencing the issue with?

Core

What solution version are you using?

4.50.6

What app or flow are you having the issue with?

Connectors Table

What method are you using to get inventory and telemetry?

Cloud flows

Steps To Reproduce

No response

Anything else?

No response</issue_description>

<agent_instructions>Why Built-In Connectors Not Being Captured in Connector Table analyze the issue and troubleshoot with clear solution</agent_instructions>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI changed the title [WIP] Fix built-in connectors not being captured in connector table Add missing built-in connectors to inventory sync flow Nov 17, 2025
Copilot AI requested a review from AmarSaiRam November 17, 2025 06:07
Copilot finished work on behalf of AmarSaiRam November 17, 2025 06:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[CoE Starter Kit - BUG] Built-In Connectors Not Being Captured in Connector Table

2 participants