BackupRestore-Control.Read.All
Allows the app to read the status of M365 backup service (enable/disable), without signed in user
Permission Details
Read the status of the M365 backup service
Allows the app to read the status of M365 backup service (enable/disable), without signed in user
6fe20a79-0e15-45a1-b019-834c125993a0
Read the status of the M365 backup service
Allows the app to read the status of M365 backup service (enable/disable), on behalf of the signed in user.
af598c63-4292-4437-b925-e996354d3854
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
application |
identity |
The Entra ID application ID. |
effectiveDateTime |
DateTimeOffsetNullable |
Timestamp of the effective activation of the service app. |
id |
String |
The unique identifier of the service app. |
lastModifiedBy |
identitySet |
Identity of the person who last modified the entity. |
lastModifiedDateTime |
DateTimeOffsetNullable |
Timestamp of the last modification of the entity. |
registrationDateTime |
DateTimeOffsetNullable |
Timestamp of the creation of the service app entity. |
status |
serviceAppStatus |
The status of the service app. This value indicates whether or not the application can be used to control the backup service. The possible values are: inactive, active, pendingActive, pendingInactive, unknownFutureValue. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.serviceApp",
"id": "String (identifier)",
"status": "String",
"registrationDateTime": "String (timestamp)",
"effectiveDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"application": {
"@odata.type": "microsoft.graph.identity"
}
}
Relationships
Relationships metadata is not available for this permission mapping.
View resource documentationGraph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/solutions/backupRestore
|
GET
/solutions/backupRestore/serviceApps
|
GET
/solutions/backupRestore/serviceApps/{serviceAppId}
|
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/solutions/backupRestore
|
GET
/solutions/backupRestore/emailNotificationsSetting
|
GET
/solutions/backupRestore/serviceApps
|
GET
/solutions/backupRestore/serviceApps/{serviceAppId}
|
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft 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.BackupRestore.GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let backupRestoreRoot = await client.api('/solutions/backupRestore')
.get();
Import-Module Microsoft.Graph.BackupRestore
Get-MgSolutionBackupRestore
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph 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.backup_restore.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 BackupRestore-Control.Read.All
Grant Admin Consent
Application permissions always require admin consent.