Skip to content

Commit f136f04

Browse files
Merge pull request SharePoint#5136 from andrewconnell/docfix-restCleanup
Title fix on docs in last PR
2 parents ad9c0cf + 4236487 commit f136f04

7 files changed

+14
-0
lines changed

docs/sp-add-ins/determine-sharepoint-rest-service-endpoint-uris.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Determine SharePoint REST service endpoint URIs
10+
911
> [!TIP]
1012
> Before you start, review the following resources:
1113
>

docs/sp-add-ins/navigate-the-sharepoint-data-structure-represented-in-the-rest-service.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Navigate the SharePoint data structure represented in the REST service
10+
911
When you're working with the SharePoint REST service, you'll often start out knowing the URL of a specific SharePoint item, but want to access related items, such as the folder or library structure where that item resides. For example, suppose you create an add-in where your user enters the URL of a document in a SharePoint library. Your add-in must then break down that URL to figure out the actual SharePoint site URL. After it's done that, the add-in can then make more requests from the site on the user's behalf, such as to create, update, or delete related items or resources.
1012

1113
To do this, your add-in needs to query SharePoint for the following information:

docs/sp-add-ins/synchronize-sharepoint-items-using-the-rest-service.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Synchronize SharePoint items using the REST service
10+
911
If you want to synchronize items between SharePoint and your add-ins or services, you can use the **GetListItemChangesSinceToken** resource to do so. The **GetListItemChangesSinceToken**, part of the SharePoint REST service, corresponds to the **Lists.GetListItemChangesSinceToken** web service call.
1012

1113
Perform a **POST** request that includes an [SP.ChangeLogItemQuery object properties](#bk_props) object in the request body.

docs/sp-add-ins/upload-a-file-by-using-the-rest-api-and-jquery.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Upload a file by using the REST API and jQuery
10+
911
The code examples in this article use the REST interface and jQuery AJAX requests to add a local file to the **Documents** library, and then change properties of the list item that represents the uploaded file.
1012

1113
This process uses the following high-level steps:

docs/sp-add-ins/use-odata-query-operations-in-sharepoint-rest-requests.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Use OData query operations in SharePoint REST requests
10+
911
> [!TIP]
1012
> Before you start, review the following resources:
1113
>

docs/sp-add-ins/working-with-folders-and-files-with-rest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Working with folders and files with REST
10+
911
> [!TIP]
1012
> The SharePoint Online (and on-premises SharePoint 2016 and later) REST service supports combining multiple requests into a single call to the service by using the OData `$batch` query option. For details and links to code samples, see [Make batch requests with the REST APIs](make-batch-requests-with-the-rest-apis.md).
1113

docs/sp-add-ins/working-with-lists-and-list-items-with-rest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

9+
# Working with lists and list items with REST
10+
911
> [!TIP]
1012
> The SharePoint Online (and on-premises SharePoint 2016 and later) REST service supports combining multiple requests into a single call to the service by using the OData `$batch` query option. For details and links to code samples, see [Make batch requests with the REST APIs](make-batch-requests-with-the-rest-apis.md).
1113

0 commit comments

Comments
 (0)