ESC
Type to search...

BusinessScenarioConfig.Read.OwnedBy

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read Owned Only

Allows the app to read the configurations of business scenarios it owns, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

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.

Delegated Permission Admin consent required

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.

Properties

Microsoft Graph beta endpoint-derived-docs

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

Microsoft Graph beta endpoint-derived-docs

JSON representation is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.

JSON representation
{
  "@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

Microsoft Graph beta endpoint-derived-docs

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

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

No API methods available for this version.

Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /solutions/businessScenarios
GET /solutions/businessScenarios(uniqueName='{uniqueName}')
GET /solutions/businessScenarios(uniqueName='{uniqueName}')/planner/planConfiguration/localizations
GET /solutions/businessScenarios/{businessScenarioId}
GET /solutions/businessScenarios/{businessScenarioId}/planner
GET /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration
GET /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations
GET /solutions/businessScenarios/{businessScenarioId}/planner/taskConfiguration
Exact Microsoft Learn PowerShell match

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 docs
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaSolutionBusinessScenario /solutions/businessScenarios
List businessScenarios
Get-MgBetaSolutionBusinessScenario /solutions/businessScenarios/{businessScenarioId}
Get businessScenario
Get-MgBetaSolutionBusinessScenarioPlanner /solutions/businessScenarios/{businessScenarioId}/planner
Get businessScenarioPlanner
Get-MgBetaSolutionBusinessScenarioPlannerPlanConfiguration /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration
Get plannerPlanConfiguration
Get-MgBetaSolutionBusinessScenarioPlannerPlanConfigurationLocalization /solutions/businessScenarios/{businessScenarioId}/planner/planConfiguration/localizations
List plannerPlanConfigurationLocalizations
Get-MgBetaSolutionBusinessScenarioPlannerTaskConfiguration /solutions/businessScenarios/{businessScenarioId}/planner/taskConfiguration
Get plannerTaskConfiguration

Code Examples

C# / .NET SDK
Get businessScenario
// 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();
JavaScript
Get businessScenario
const options = {
	authProvider,
};

const client = Client.init(options);

let businessScenario = await client.api('/solutions/businessScenarios/c5d514e6c6864911ac46c720affb6e4d')
	.version('beta')
	.get();
PowerShell
Get businessScenario
Import-Module Microsoft.Graph.Beta.BusinessScenario

Get-MgBetaSolutionBusinessScenario -BusinessScenarioId $businessScenarioId
Python
Get businessScenario
# 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

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions or delegated permissions and search for BusinessScenarioConfig.Read.OwnedBy

4

Grant Admin Consent

Application permissions always require admin consent.