Skip to content

Commit fede961

Browse files
Update get-to-know-the-sharepoint-rest-service.md
Proposing a change on line 98 to get a list item property. Original code gets the list title and not the item title
1 parent 33f31ba commit fede961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sp-add-ins/get-to-know-the-sharepoint-rest-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The following table contains typical REST endpoint URL examples to get you start
9595
| Retrieves all lists on a site | `lists` | GET | Not applicable |
9696
| Retrieves a single list's metadata | `lists/getbytitle('listname')` | GET | Not applicable |
9797
| Retrieves items within a list | `lists/getbytitle('listname')/items` | GET | Not applicable |
98-
| Retrieves a specific property of a document<br />*(in this case, the document title)* | `lists/getbytitle('listname')?select=Title` | GET | Not applicable |
98+
| Retrieves a specific property of a document<br />*(in this case, the document title)* | `lists/getbytitle('listname')/items({id})?$select=Title` | GET | Not applicable |
9999
| Creates a list | `lists` | POST | See sample |
100100
| Adds an item to a list | `lists/getbytitle('listname')/items` | POST | See sample |
101101

0 commit comments

Comments
 (0)