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
- DeletedMay 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.
Deleted
May 29, 2018You 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.
- May 29, 2018SPO Admin is correct :-)
- Americo PerezMay 31, 2018Iron Contributor
Thanks to both!