| title | List snapshots |
|---|---|
| description | Get a list of available backup snapshots for the tenant. |
| author | yuhko-msft |
| ms.date | 03/19/2026 |
| ms.localizationpriority | medium |
| ms.subservice | entra-id |
| doc_type | apiPageType |
Namespace: microsoft.graph.entraRecoveryServices
[!INCLUDE beta-disclaimer]
Get a list of available backup snapshot objects for the tenant. Snapshots represent points in time to which the tenant can be restored.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
[!INCLUDE rbac-entrarecoveryservices-apis-read]
GET /directory/recovery/snapshotsThis method supports the $select, $top, and $orderby OData query parameters to help customize the response. For general information, see OData query parameters. The default and maximum page sizes are 100 and 999 snapshots objects respectively.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of microsoft.graph.entraRecoveryServices.snapshot objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/directory/recovery/snapshots[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#directory/recovery/snapshots",
"value": [
{
"@odata.type": "#microsoft.graph.entraRecoveryServices.snapshot",
"id": "MjAyNC0wOC0yNVQwNjozMDowMFo=",
"createdDateTime": "2024-08-25T06:30:00Z",
"totalChangedObjects": 1230000
},
{
"@odata.type": "#microsoft.graph.entraRecoveryServices.snapshot",
"id": "MjAyNC0wOC0yNlQwMjozMDowMFo=",
"createdDateTime": "2024-08-26T02:30:00Z",
"totalChangedObjects": 1000000
}
]
}