Bluedot Tempo,
Android SDK version 15.3.0,
iOS SDK version 15.4.0 &
Canvas & Config API
released.
Details here.
Real-time Data Sync
The Point SDK can be optionally configured to receive push notifications to enable the real-time data sync. The present implementation supports integration through Google Firebase cloud messaging.
Create your Firebase project
To add Zone data sync support to your application you will need to add Firebase to your app, you will need to create a Firebase project. This can be achieved by the following steps:
- If you don’t have a Google Firebase account, then create a free account by clicking on the Get started for free button on the home page of Firebase website.
- You can register for a Firebase account using a Gmail account.
- Create a new Firebase project in the Firebase console, if you have an existing Google project associated with your mobile app, you can import it by selecting Import Google Project. To create a new project click on Create New Project.
- A new dialog will appear, enter your project’s name and select your country/region and click on the Create Project button.
- You will be taken to your Firebase project page.
- Navigate to the Project settings page by selecting the settings icon next to the project name and then select the Project settings link in the navigation menu.
- Navigate to the CLOUD MESSAGING tab.
- Here you will find the
Server key
under the Project credentials section, which is required to be added to your Bluedot Project on Canvas.
Setup Firebase API key for your Bluedot project
Create a new Project and add the Firebase Web API Key for it
- Login into Canvas
- Choose Project from the menu in the top right corner
- Tap the Edit Details button
- Add the Firebase API Key
- Update
Enter the Firebase Web API Key from the Firebase project setting to the Firebase API Key field. Using this key we will be able to communicate with Firebase to deliver the zones that need to be synced.
Sync Zones updates to mobile applications

The new zone updates are synced every 5 mins to the mobile devices.
Canvas Zone updates
The newly added, updated or deleted zones from Canvas will be automatically synced to all your mobile devices using the Firebase API Key that was added to the Project details.
Config API Zone updates
By default, all Zones created, updated or deleted via the Config API are not automatically synced to the mobile devices.
If you wish for newly created or updated Zones to be synced immediately to the mobile devices then add the shouldSync
field in the POST and PUT JSON requests.
The API specification for Zones can be found here.
Sample POST JSON request:
{ "name": "Sample fence", "minimumRetriggerTime": 3600, "geofeatures": [{ "name": "Sample fence", "radius": 40, "center": { "latitude": -37.818036, "longitude": 144.9775493 }, "color": "#429BD5", "type": "circle", }], "projectId": "6e4aeb98-05b3-4b3f-b9ac-3b9a169e395c", "triggerOnExit": false, "shouldSync": true }
If you wish for deleted Zones to be synced immediately to the mobile devices then add shouldSync
as a parameter in the DELETE request.
{Base Config API URL}/zones/{zoneId}?shouldSync=true
Bulk zone updates
For bulk Zone updates via API scripts we suggest setting the shouldSync
value to false
in the Zone requests, this is to avoid multiple real-time data sync push messages sent to mobile devices.

Start the discussion