Advertisement
Guest User

http://sharepoint.stackexchange.com/questions/164403/

a guest
Dec 9th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. //sharepoint/sites/home/_api/Web/Lists(guid'...')/Items
  2. ?$select=Title, Author/Title
  3. &$expand=Author
  4. &$filter=Author/Title eq 'Jon Smith'
  5.  
  6. //sharepoint/sites/home/_api/Web/Lists(guid'...')
  7. ?$select=Title, Items/Title, Items/Author/Title
  8. &$expand=Items, Items/Author
  9. &$filter=Id eq guid'...' and Items/Author/Title eq 'Jon Smith'
  10.  
  11. //sharepoint/sites/home/_api/Web/Lists
  12. ?$select=Title, Items/Title, Items/Author/Title
  13. &$expand=Items, Items/Author
  14. &$filter=Id eq guid'...' and Items/Author/Title eq 'Jon Smith'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement