
Announcements
Hi Gurus,
There is a requirement in my project where the flow need to list all the Sharepoint's Document Libraries drive ID how to achieve this,
Thanks in advance.
Hi @Praba,
You could use a list drives method and a $select query parameter to only retrieve the id field of those drives.
Below is an example for one specific site.
Uri
_api/v2.0/drives?$select=id
Headers
{
"Content-Type": "application/json",
"Accept": "application/json"
}