Learn how to use Power Automate to check if a SharePoint site exists or not, and how to handle different scenarios such as restricted sites or non-existent sites.
Power Automate is a powerful tool that allows you to automate processes across various systems, apps, and websites. One of the common tasks that you may want to automate is to check if a SharePoint site exists or not, before performing any actions on it. For example, you may want to create a new subsite, but only if it does not already exist.
However, there is no direct action in Power Automate that can check if a SharePoint site exists or not. So, how can you achieve this task using Power Automate? In this article, you will learn how to use the Send an HTTP request to SharePoint action to check if a SharePoint site exists or not, and how to handle different scenarios such as restricted sites or non-existent sites.
Table of Contents
To check if a SharePoint site exists or not, you can use the Send an HTTP request to SharePoint action, which allows you to send a REST API call to SharePoint and get a response. The basic steps are as follows:
- Create a new flow in Power Automate, and add a trigger of your choice. For example, you can use a Manual trigger or a Scheduled trigger.
- Add a Send an HTTP request to SharePoint action, and configure it as follows:
- Site Address: Enter the URL of the SharePoint site that you want to check. For example, https://contoso.sharepoint.com/sites/Marketing.
- Method: Select GET from the drop-down list.
- Uri: Enter /_api/web/webinfos, which is the endpoint that returns the subsites of the site as an XML response.
- Add a Compose action, and set the Inputs to the following expression: string(outputs(‘Send_an_HTTP_request_to_SharePoint’)?[‘body’]). This will convert the response body from the previous action to a string, which can be used for further processing.
- Add a Condition action, and set the Choose a value field to the output of the previous action. Set the Condition to contains, and set the Choose a value field to the subsite name that you want to check. For example, if you want to check if the subsite Marketing/Events exists, enter /sites/Marketing/Events in the field. This will check if the response body contains the subsite name or not.
- In the If yes branch, add the actions that you want to perform if the subsite exists. For example, you can send an email notification or update a list item.
- In the If no branch, add the actions that you want to perform if the subsite does not exist. For example, you can create a new subsite using the Create site action.
How to Handle Different Scenarios
The above method works fine if the SharePoint site is accessible and the subsite name is valid. However, there are some scenarios that may cause the flow to fail or behave unexpectedly. Here are some of the possible scenarios and how to handle them:
- The SharePoint site does not exist: In this case, the Send an HTTP request to SharePoint action will throw a 404 error, which means that the site is not found. To handle this error, you can use the Configure run after settings of the action, and select the has failed option. This will allow the action to run even if the site does not exist. Then, you can add a parallel branch after the action, and use the Run after settings to run different actions based on the status of the action. For example, you can run one branch if the action is successful, and another branch if the action has failed. In the failed branch, you can add the actions that you want to perform if the site does not exist, such as creating a new site or sending an error notification.
- The SharePoint site is restricted: In this case, the Send an HTTP request to SharePoint action will throw a 403 error, which means that the site is forbidden. This may happen if the site has restricted access or the flow creator does not have permission to access the site. To handle this error, you can use the same method as the previous scenario, and use the Configure run after and Run after settings to run different actions based on the status of the action. In the failed branch, you can add the actions that you want to perform if the site is restricted, such as requesting access or sending an error notification.
- The subsite name is invalid: In this case, the Condition action will always return false, even if the site exists. This may happen if the subsite name is not formatted correctly, or does not match the actual subsite name. To avoid this error, you should make sure that the subsite name is entered correctly, and matches the case and the URL of the subsite. For example, if the subsite name is Marketing/Events, you should enter /sites/Marketing/Events in the Condition action, and not /sites/marketing/events or /sites/Marketing/events.
Frequently Asked Questions (FAQs)
Q: Can I use this method to check if a site collection exists or not?
Answer: Yes, you can use this method to check if a site collection exists or not, by entering the URL of the site collection in the Site Address field of the Send an HTTP request to SharePoint action, and leaving the Uri field blank. This will return the properties of the site collection as an XML response, which you can use to check if the site collection exists or not.
Q: Can I use this method to check if a list or a library exists or not?
Answer: Yes, you can use this method to check if a list or a library exists or not, by entering the URL of the site that contains the list or the library in the Site Address field of the Send an HTTP request to SharePoint action, and entering /_api/web/lists/getbytitle(‘ListName’) in the Uri field, where ListName is the name of the list or the library that you want to check. This will return the properties of the list or the library as an XML response, which you can use to check if the list or the library exists or not.
Q: Can I use this method to check if a folder or a file exists or not?
Answer: Yes, you can use this method to check if a folder or a file exists or not, by entering the URL of the site that contains the folder or the file in the Site Address field of the Send an HTTP request to SharePoint action, and entering /_api/web/getfolderbyserverrelativeurl(‘FolderUrl’) or /_api/web/getfilebyserverrelativeurl(‘FileUrl’) in the Uri field, where FolderUrl or FileUrl is the relative URL of the folder or the file that you want to check. This will return the properties of the folder or the file as an XML response, which you can use to check if the folder or the file exists or not.
Summary
In this article, you learned how to use Power Automate to check if a SharePoint site exists or not, and how to handle different scenarios such as restricted sites or non-existent sites. You also learned how to use the Send an HTTP request to SharePoint action to send a REST API call to SharePoint and get a response, and how to use the Configure run after and Run after settings to run different actions based on the status of the action. You can use this method to check if other SharePoint objects, such as site collections, lists, libraries, folders, or files, exist or not, by using different endpoints in the Uri field of the action.
Disclaimer: This article is for informational purposes only and does not constitute professional advice. The author and the publisher are not liable for any damages or losses that may result from the use of the information or the code in this article. You should always test the code and the flow before using it in a production environment. You should also consult the official documentation and the community forums for more information and guidance on Power Automate and SharePoint.