Skip to content

Latest commit

 

History

History
71 lines (48 loc) · 2.39 KB

File metadata and controls

71 lines (48 loc) · 2.39 KB
author spgraph-docs-team
description Restore a previous version of a ListItem to be the current version. This will create a new version with the contents of the previous version, but preserves all existing versions of the item.
ms.date 09/10/2017
title Restore a previous version of a SharePoint list item
ms.localizationpriority medium
ms.subservice sharepoint
doc_type apiPageType

Restore a previous version of a ListItem

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Restore a previous version of a ListItem to be the current version. This will create a new version with the contents of the previous version, but preserves all existing versions of the item.

[!INCLUDE national-cloud-support]

Permissions

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]

HTTP request

POST /sites/{site-id}/items/{item-id}/versions/{version-id}/restoreVersion
POST /sites/{site-id}/lists/{list-id}/items/{item-id}/versions/{version-id}/restoreVersion

Request body

No request body is required.

Example

This example restores a version of a listItem identified by {item-id} and {version-id}.

POST https://graph.microsoft.com/beta/sites/{site-id}/items/{item-id}/versions/{version-id}/restoreVersion

Response

If successful, the API call returns a 204 No content.

HTTP/1.1 204 No content