Forum Discussion
hcl_nitin
Apr 28, 2020Copper Contributor
sharepoint api link
Hi, I need sharepoint API url for accessing sharepoint data. Please suggest the the list of API. regards, Nitin chauhan
Beau Cameron
Apr 28, 2020MVP
hcl_nitin https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/get-to-know-the-sharepoint-rest-service?tabs=csom
- hcl_nitinApr 28, 2020Copper Contributor
I am not getting result when posting the request like http://<site url>/_api/web/lists in postman
whre site url = https://hclo365.sharepoint.com/Sites/
the full url is https://hclo365.sharepoint.com/Sites/_api/web/lists/getByTitle('SPlist').
Am I missing anything.
- Apr 28, 2020
hcl_nitin your url is not correct, /Sites/ its causing the problem. It needs to be the site url plus /_api/...
If using the root site collection:
https://hclo365.sharepoint.com/_api/web/lists/getByTitle('SPlist')
If using a different site collection:
https://hclo365.sharepoint.com/sites/TestSite/_api/web/lists/getByTitle('SPlist')
- hcl_nitinApr 28, 2020Copper Contributor