To Show all the requests Created by logged in user in a Document Library
(1) By Author/Logged in user:
//Finding Id by logged in user: (In jQuery Document ready function)
var userId = _spPageContextInfo.userId;
// alert("User Id is: " + userId);
EndPoint:
"http://server/sites/subsite/_api/web/lists/getbytitle('DocLibName')/items?$select=Title,AuthorId, EditorId, Column1, Column2 &$filter= Author/Id eq " + userId
AuthorId = Created By
EditorId = Modified By
For filter use Author/Id
(2) By Id
http://Server/sites/Site/_api/web/lists/getbytitle(DocLibName)/items('41')/File?$select=Title
--- 41 is the Id
(3) By Guid
http://Server/sites/Site/_api/Web/Lists(guid'YourLibraryGUID')/Items/?$select=Title,Column1,Column2 &$filter= Author/Id eq 2
--- Displays items Created by user with Id 2
No comments:
Post a Comment