Have you ever tried to get the all site collection details using Power Automate?

SharePoint Connector

After yesterday’s news about the new actions in the SharePoint Connector, today I thought I’ll try and take this a step further.

The challenge I gave myself is can I get to all the site collections and collect the details of my site collections using a flow? the answer is yes!

Get to all your site collection details with the REST API

First of all I found a list that contains all the site collection information for my tenant.

The api to get to this is:

/_api/Web/Lists(guid’6f5b13c6-7732-47c4-b70a-8963fd7512c7′)/Items

So I added this uri to my Send an HTTP request to SharePoint action

Get to all your site collection details

And well the rest is easy!

Get to all your site collection details within your Office 365 tenant using Power Automate? Microsoft Office 365, Microsoft Flow sitecollectiontitles

As you can see above it is possible to display the Title of my site.

But you can get to more:

{
.....
"FileSystemObjectType": 0,
"Id": 1,
"ServerRedirectedEmbedUri": null,
"ServerRedirectedEmbedUrl": "",
"ContentTypeId": "0x010038A268F2641BCA4FA94C95C6CD37607A",
"Title": "Team Site",
"AllowGuestUserSignIn": true,
"Classification": null,
"ExternalSharing": "On",
"FileViewedOrEdited": 51,
"GroupId": "00000000-0000-0000-0000-000000000000",
"IsGroupConnected": false,
"LastActivityOn": "2018-04-19T00:00:00Z",
"NumOfFiles": 114,
"PageViews": 90,
"PagesVisited": 24,
"PrimaryAdmin": "Company Administrator",
"ShareByEmailEnabled": true,
"ShareByLinkEnabled": false,
"SiteId": "08c033be-cb3c-4d4b-b972-025791286235",
"SiteOwnerName": "Company Administrator",
"SiteSecondaryOwnerEmail": null,
"SiteSecondaryOwnerName": null,
"SiteUrl": "https:/ /pieterveenstramvp.sharepoint.com",
"StorageQuota": 27487790694400,
"StorageUsed": 7261335295,
"TemplateId": 1,
"TemplateTitle": "Team site (classic experience)",
"TimeCreated": "2017-07-10T13:16:48Z",
"TimeDeleted": null,
"ComplianceAssetId": null,
"State": null,
"OperationStartTime": null,
"HubSiteId": "00000000-0000-0000-0000-000000000000",
"ID": 1,
"Modified": "2018-04-23T20:50:11Z",
"Created": "2017-09-08T03:56:11Z",
"AuthorId": 1073741823,
"EditorId": 1073741823,
"OData__UIVersionString": "1.0",
"Attachments": false,
"GUID": "70424877-a75a-4acf-8bca-209a04b60cf0"
}

Things like Modification dates, HubSiteId and Site Owners are extracted within no time. And how about Storage Used? All of this information could come handy one day.

Avatar for Pieter Veenstra

By Pieter Veenstra

Business Applications Microsoft MVP working as the Head of Power Platform at Vantage 365. You can contact me using contact@sharepains.com

23 thoughts on “Get to all your site collection details within your Office 365 tenant using Power Automate?”
  1. This is interesting! Can you please let me know how to get the list that contains all the site collection information for my tenant.

  2. DO I need to have global admin privileges to get this list? My account just has SharePoint admin rights and I donot see an empty title list. However I see this: DO_NOT_DELETE_SPLIST_TENANTADMIN_AGGREGATED_SITECOLLECTIONS. Can you please suggest?

  3. I have found that list now! But the result is empty array. I am pretty sure I am using the current URL and there are thousands of site collections in our tenant. Can you help me on this?

    1. I think that you have the wrong list.
      When you go to :
      https://tenant-admin.sharepoint.com/_api/Web/Lists?$select=Title

      You should see quite a few entries like this:
      href=”Web/Lists(guid’8822a3c0-3099-4942-9a25-caa23dec131c’)” />

      One of these lists is the one you are looking for.

      so I go through each one of these and visit the following url:

      https://tenant-admin.sharepoint.com/_api/Web/Lists(guid'8822a3c0-3099-4942-9a25-caa23dec131c‘)/Items

      then keep replacing the guid in that url until you get items back that include your site titles:

      In my browser output when visiting the above url I search for Title and find something like this:

      …d:Title>PMO</d:Title…

  4. Body
    {
    “d”: {
    “results”: []
    }
    }

    I see the output for Send Http request to Shareoint as above. Is this the expected result? Really appreciate your time and helping me out.

  5. I am able to get the result. However I am trying to get the site collection owner names for all of the site collections retrieved. Is this possible using FLOW?

      1. Thank you for the response. Its actually the members in the owner group of a site that I am looking for.

  6. Hi Pieter, can you show us how you build the rest of the flow from the Compose to the end? At the moment I don’t understand how you extract the Ttile out of the HTTP response and put them in an array.

      1. Thanks, I used the triggerbody() expression in the Compose action but ater running the flow the input and output is empty. The output of Send HTTP request to Sharepoint however show the same results as when I visit /_api/Web/Lists(guid’8f287b97-a3a2-4b64-9b82-c313c9480235′)/Items.
        What am I missing?

      2. the triggerbody function will give you the output from the trigger only.

        If you want to get the output from the HTTP request action you will need to use something like:

        body(‘Send_an_HTTP_request_to_SharePoint’)

        The name of the HTTP request action may of course vary, and you will need to adjust that.

  7. Great post, this is so useful and easy to setup. I am bumping into one problem, I only get 100 items (sites) returned. Is there a limit on the http request?

    1. Have you tried adding this to the url:

      ?$top=500

      The default is 100 items, but you should be able to increase the number of items returned by specifying the top

  8. Hi ,
    Is there any possible to create a new site collection under main site collection. Please kindly let me know.

    Thanks & Regards
    Jacob

  9. I’d like to get the sub sites name and its URL of my root site collection which are created based on date parameter passed. If i passed today’s date then i need to get the sub sites created today. Could you please help how to achieve that?

Leave a Reply to Pieter VeenstraCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from SharePains by Microsoft MVP Pieter Veenstra

Subscribe now to keep reading and get access to the full archive.

Continue reading