Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions power-platform/admin/set-up-managed-identity.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Learn how to set up Power Platform managed identity for Dataverse p
author: abhijananddv
ms.component: pa-admin
ms.topic: how-to
ms.date: 09/18/2025
ms.date: 10/10/2025
ms.subservice: admin
ms.author: abhijanand
ms.reviewer: sericks
Expand Down Expand Up @@ -162,8 +162,9 @@ To provision managed identity record in Dataverse, complete the following steps.
```
POST https://<<orgURL>>/api/data/v9.0/managedidentities
```
Be sure to replace **orgURL** with the URL of the organization.
Ensure that **credentialsource** is set to **2** in the payload and **subjectscope** is set to **1** for environment-specific scenarios.
Be sure to replace **orgURL** with the URL of the organization.

Ensure that **credentialsource** is set to **2** in the payload, **subjectscope** is set to **1** for environment-specific scenarios, and **version** is set to 1 in the payload.

**Sample payload**
```json
Expand All @@ -173,10 +174,11 @@ To provision managed identity record in Dataverse, complete the following steps.
"credentialsource": 2,
"subjectscope": 1,
"tenantid": "<<tenantId>>"
"version": 1
}
```

2. Make a PATCH call to bind the plug-in assembly ID with the managed identity record that's created through the POST call in step 1.
3. Make a PATCH call to bind the plug-in assembly ID with the managed identity record that's created through the POST call in step 1.

**Plug-in assembly**
```
Expand Down