BusinessScenarioConfig.Read.OwnedBy
Allows the app to read the configurations of business scenarios it owns, without a signed-in user.
Permission Details
Read all business scenario configurations this app creates or owns
Allows the app to read the configurations of business scenarios it owns, without a signed-in user.
acc0fc4d-2cd6-4194-8700-1768d8423d86
Read business scenario configurations this app creates or owns
Allows the app to read the configurations of business scenarios it owns, on behalf of the signed-in user.
c47e7b6e-d6f1-4be9-9ffd-1e00f3e32892
Properties
Properties is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.
| Property | Type | Description |
|---|---|---|
createdBy |
identitySet |
The identity of the user who created the scenario. |
createdDateTime |
DateTimeOffset |
The date and time when the scenario was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. |
displayName |
StringNullable |
Display name of the scenario. |
id |
String |
The unique identifier for the scenario. Inherited from entity. |
lastModifiedBy |
identitySet |
The identity of the user who last modified the scenario. |
lastModifiedDateTime |
DateTimeOffset |
The date and time when the scenario was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. |
ownerAppIds |
String collection |
Identifiers of applications that are authorized to work with this scenario. |
uniqueName |
StringNullable |
Unique name of the scenario. To avoid conflicts, the recommended value for the unique name is a reverse domain name format, owned by the author of the scenario. For example, a scenario authored by Contoso.com would have a unique name that starts with com.contoso. |
planner |
object |
Planner content related to the scenario. |
JSON Representation
JSON representation is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.
{
"@odata.type": "#microsoft.graph.businessScenario",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"createdDateTime": "String (timestamp)",
"displayName": "String",
"id": "String (identifier)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"ownerAppIds": [
"String"
],
"uniqueName": "String"
}
Relationships
Relationships is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.
| Relationship | Type | Description |
|---|---|---|
planner |
businessScenarioPlanner |
Planner content related to the scenario. |
ownerAppIds |
string collection |
Identifiers of applications that are authorized to work with this scenario. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
No API methods available for this version.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsMicrosoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Solutions.BusinessScenarios["{businessScenario-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let businessScenario = await client.api('/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d')
.version('beta')
.get();
Import-Module Microsoft.Graph.Beta.BusinessScenario
Get-MgBetaSolutionBusinessScenario -BusinessScenarioId $businessScenarioId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.solutions.business_scenarios.by_business_scenario_id('businessScenario-id').get()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions or delegated permissions and search for BusinessScenarioConfig.Read.OwnedBy
Grant Admin Consent
Application permissions always require admin consent.