Forum Discussion
Americo Perez
May 29, 2018Iron Contributor
Get the list GUID with SPFX
Hi,
How can I get the ListGuid in SPFX?
That is it :-)
Best regards
Americo
- AnonymousMay 29, 2018
You can use REST API Get call like below to get GUID of a specific list
https://yourtenant.sharepoint.com/_api/web/lists/GetByTitle('ListTitle')
You can easily find guid in the xml response.
3 Replies
- Anonymous
You can use REST API Get call like below to get GUID of a specific list
https://yourtenant.sharepoint.com/_api/web/lists/GetByTitle('ListTitle')
You can easily find guid in the xml response.
- SPO Admin is correct :-)
- Americo PerezIron Contributor
Thanks to both!