🔃INTEGRATION ⇛ Phone Notifications ⇒ SharePoint Online


Very quick guide for integrating Android Mobile Notifications to SharePoint Online.

Requirements

  • Android phone with FilterBox App installed
  • SharePoint Online account
  • Power Automate account 


GUIDE

⭕FilterBox Setup

  • Install FilterBox from Google Play Store.
  • Make sure the App works and captures your notifications

SharePoint Online Setup

  • Setup a List with 3 Fields
    1. Title,Text, App

Power Automate Setup

  • Log in to Power Automate.
  • Create a new flow: "When a HTTP request is received"  "Create item in SharePoint." If you don't see the Trigger when creating the Flow, create a Flow with any other Trigger, and change it from inside the editor

  • Add the following as the Body Scheme
    {
        "type""object",
        "properties": {
            "title": {
                "type""string"
            },
            "text": {
                "type""string"
            },
            "app": {
                "type""string"
            }
        }
    }
  • Copy the HTTP POST URL generated (From the HTTP Request Box).

Connect FilterBox to Power Automate

  • Open FilterBox, go to Rules  Enhancer  Web Hook
  • Paste the HTTP POST URL from Power Automate.
  • Set up the JSON payload to match your SharePoint fields.

Test

  • Receive a notification on your phone.
  • Check if the item is created in SharePoint.

Done. Now your phone notifications should be preserved in SharePoint Online.


Comments