Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Troubleshooting documentation for iOS.
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Our Roam Docs contain instructions on how to integrate and use our location SDKs and APIs. Each section walks you through the step-by-step process with source code, examples, and references.
Roam SDK is a convenient Software Development Kit that helps you easily add location tracking to your app without the complexity of REST API calls. Our main product offers accuracy, battery efficiency, and customizable location tracking with the following additional features:
Always-on location tracking to track users’ location at all times regardless of the application state (foreground, background, terminated)
Offline location tracking to track users’ location when they are not connected to the internet.
Location spoofing prevention prevents your users from faking their location.
Location tracking modes to customize the setup and optimize battery usage and data collection frequency.
Our REST APIs allow you to go beyond simple location tracking:
Geofencing - static and moving geofences with events.
Insights - detailed location information about your users' patterns.
Trips - full trip management for mobility and on-demand services.
Nearby - find nearby users and geofences.
Learn more about the key concepts of Roam location technology.
The fundamental component of Roam location tracking. It is a package of data collected about a users’ location that includes latitude, longitude, altitude, speed, direction, activity, and more.
The Location module defines the desired data flow of a location update. Depending on what you intend to do with the location update we distinguish four different location modules: Tracker, Publisher, Listener, and Processor.
The location update is collected by the GPS via Roam SDK and stored locally on the mobile device. You may use it if you want simple location tracking and store the location data yourself.
The location update is collected by the GPS via Roam SDK, sent from the mobile device to the backend server, and stored in the Roam database. You may use it if you want to store the data on Roam servers and go beyond simple location tracking by accessing other Roam products.
The location listener updates the changes in the location through the server to the mobile device.
The Location Processor processes the location updates stored in the database according to the API calls.
Location tracking mode allows you to customize your location tracking with varying frequencies of updates and levels of battery drain insights. We differentiate three default modes: Active, Reactive, Passive, and one fully customizable.
Call this method to update the current location of a user.
Using the updateCurrentLocation
method, you can update the users' current location. You can set the accuracy between 5 to 100 meters (default is 10).
You can now send custom meta-data json values along with updateCurrentLocation
method.
Explore all documentation for Android.
Learn how to easily implement Roam location technology.
Get started with Roam by creating a free account. The account gives you access to all our location products, project creation and dashboard with a full overview of your usage and spending.
During the signup process, download the Roam Test App. It’s our demo application for Android and iOS that showcases the basic functionality of Roam location technology.
Read our Roam Docs for Android and iOS for instructions about how to effectively integrate and use our location SDKs and APIs.
To get more information about our products read our Knowledge Base or contact our support team.
Explore the Trips v2 SDK Methods for Android
Explore all of Roam's Android SDK methods.
Explore the Android SDK Methods for Trip API v1. Check out the latest methods if you are using Trips API v2!
Use the code below to create a trip directly from the SDK. Set Boolean value true
to create offline trips and false
to create online trips.
Use the code below to start the trip with the previously created tripID.
Use the code below to pause the trip with the previously started trip id.
To resume the trip,
Subscribe to tripStatus
using the tripId
to get real-time trip status.
To stop receiving trip status updates, use the method below.
To retrieve the active trips, set the Boolean value to true
to get offline trips and to false
to get online trips.
Explore how to create a trip on Android with Trips v2.
To create a trip, you need to create an object for the trip and assign it with the RoamTrip() builder class. Below are the parameters and their descriptions for the trip object.
metadata
JSONObject
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripName
String
The name of the trip
tripDescription
String
The description for the trip
isLocal
boolean
Value determining if the trip is a local trip.
user
String
The user ID
Stops
List <RoamTripStops>
The list of stop object
When you create a trip, you can add stop locations which are nothing but locations where the user taking the trip will receive events for entry and exit. To create and assign stops to a trip, create objects for a single or multiple stops and assign them with the RoamTripStops() class. Below are the parameters and their descriptions for the stop object.
metadata
JSONObject
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
stopName
String
The stop name
stopDescription
String
The stop description
geometryRadius
Double
The stop radius
geometry
List<Double>
The coordinates list with longitude and latitude.
address
String
The stop address
Below is an example code for creating a trip with two stops. Let's create our stop objects.
Now, let's create an object for the trip and update the parameters along with stop which was created above.
Now that the trip and stop objects are created, let's create the trip with Roam.createTrip() method.
The list of responses and error parameters are given below with their descriptions.
To access the status parameters:
response.getCode()
Integer
The response code of the method.
response.getMessage()
String
The response message of the method.
To access the trip response:
getTripDetails().getTripId()
String
Unique identifier for the object.
getTripDetails().getMetadata()
Object
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
getTripDetails().getTripName()
String
The name of the trip
getTripDetails().getTripDescription()
String
The trip’s description
getTripDetails().getTripState()
String
The current state of the trip is either created, started, or ended.
getTripDetails().getIsLocal()
boolean
Value determining if the trip is a local trip.
getTripDetails().getTotalDistance()
double
The total distance covered by the user for this trip.
getTripDetails().getTotalDuration()
double
The total duration taken by the user for this trip.
getTripDetails().getTotalElevationGain()
double
The total elevation gain covered by the user for this trip.
getTripDetails().createdAt()
String
Timestamp of when the trip was created
getTripDetails().updatedAt()
String
Timestamp of when the trip was updated
getTripDetails().startedAt()
String
Timestamp of when the trip was started by the user
getTripDetails().endedAt()
String
Timestamp of when the trip was ended by the user
To access user details:
getUser().getId()
String
Unique identifier for the object.
getUser().getMetadata()
Object
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
getUser().getDescription()
String
User description
getUser().getName()
String
The user's full name
To access stop details:
getStops().get(i).getStopName()
String
The stop name
getStops().get(i).getStopDescription()
String
The stop description
getStops().get(i).getMetadata()
Object
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
getStops().get(i).getGeometryRadius()
double
The stop radius.
getStops().get(i).getGeometry()
Object
The coordinates list with longitude and latitude.
getStops().get(i).getArrivedAt()
String
The timestamp when the user arrived at the stop.
getStops().get(i).getDepartedAt()
String
The timestamp when the user departed from the stop.
getStops().get(i).getAddress()
String
The stop address .
To access error details:
error.getErrorCode()
Integer
The error response code of the method.
error.getErrorMessage()
String
The error response message of the method.
error.getErrorDescription()
String
The error response description of the method.
error.getErrors().get(i).getMessage()
String
The message for error detail.
error.getErrors.get(i).getField()
String
The field for error detail.
Call this method to periodically pick up a user's location when they are stationary. Customize the time interval in seconds.
By using this method updateLocationWhenStationary
, location will update every x
seconds when the device goes into a stationary state.
Except for time-based custom tracking, this will operate in all tracking modes, including active, passive, balance, and distance based custom tracking.
Call this method to get the current location of the user at your desired accuracy level.
Get the current location of the user. You can set the accuracy between 5 and 100 meters (default is 10). This method has two outputs.
Callback Method which returns the current location with a faster response time. However, the accuracy depends on the current GPS connectivity.
Location Receiver which returns the next two location updates which will have higher accuracy compared to the callback and takes time from a few hundred milliseconds to a couple of seconds based on the GPS and network connectivity.
To listen to location updates, create a class that extends RoamReceiver. Then register the receiver by adding a receiver element to the application element in your manifest.
Add the code to the receiver.
To get the current location of the user in the callback, use the following code:
Parameter
Description
DesiredAccuracy
RoamTrackingMode.DesiredAccuracy.HIGH RoamTrackingMode.DesiredAccuracy.MEDIUM RoamTrackingMode.DesiredAccuracy.LOW
The Roam Android SDK makes it quick and easy to build a location tracker for your Android app. We provide powerful and customizable tracking modes and features.
To use the Roam SDK,
Get yourself a free Roam Account. No credit card is required.
Create a project and add an Android app to the project.
You need the PUBLISHABLE_KEY
(available in your project settings) to initialize the SDK.
Now, you’re ready to integrate the SDK into your Android application.
Roam Android SDK requires Android Studio 2.0 or later and is compatible with apps targeting Android SDK Version 16 or above.
The Roam Example repository on GitHub includes sample applications that demonstrate the use of the v3 Roam SDK for Android.
To run an example app, clone this repository, navigate to the example app in paths Example/
, add your publishable YOUR-PUBLISHABLE-KEY
key in MainApplication.java
, and run the app.
Make sure the package name
is the same as the one registered on our Roam dashboard.
To use the Android SDK in a project, add the SDK as a build dependency and sync the project.
Go to Android Studio > New Project > Minimum SDK
Select API 16: Android 4.1.0 (Jelly Bean) or higher and create a project
After you create a new project, open Gradle Scripts > build.gradle (Project: <your_project>) and do the following:
Add the following to the build script {repositories {}} section of the build.gradle (Project)file:
Sync and close build.gradle (Project: <your_project>)
To install the SDK for your project via Gradle
in Android Studio, add the maven below to your project build.gradle
file.
add the dependencies below to your app build.gradle
file.
Then sync Gradle.
Download and unzip the Roam SDK.
Open Android Studio and add the SDK Roam.aar
as a module using File > New > New Module > Import .JAR/.AAR Package.
Once Gradle is finished, click File > Project Structure again.
Click on the Dependencies tab > click App > click the “+” icon in the top left of the Declared Dependencies section > select Module Dependency > click on Roam-release > press Ok and wait for Gradle to sync again.
Make sure to include the dependencies separately and sync your project.
Roam SDK offers a flexible method of initialization, allowing developers to seamlessly integrate our services into their applications. With our latest update, we've introduced a new initialization approach using Manifest file. This method provides an effortless way to set up your Roam SDK without the need for additional code.
Using Manifest file Initialization:
Optional Parameter: Publish Key
The publishKey
parameter in the initialization method is now optional.
If you've added your Roam publish key to your project's Manifest
file, there's no need to pass the publishKey
parameter during initialization.
Configure Your Manifest File:
In your Manifest
file, declare your Roam publish key as follows:
Replace ${ROAM_PUBLISH_KEY}
with your actual Roam publish key.
Using local.properties (Optional):
Alternatively, you can use a local.properties
file to feed the Roam publish key to the Manifest
file.
In your local.properties
file, add the following line, replacing XXXXXXXXXXXXXX
with your Roam publish key:
To get Roam publish key from local.properties to Manifest, user must have to add following code in build.gradle(app)
Initialization Code:
Initialize Roam SDK in your application class as follows:
If the publish key is added to the Manifest file, the initialize
method can be called without passing the publishable key.
By following these steps, you can seamlessly initialize Roam SDK using manifest file, simplifying the integration process and saving valuable development time.
Using Application class Initialization:
Before initializing the SDK, the below must be imported.
After importing, add the code below under the Application class onCreate()
method. The SDK must be initialized before calling any of the other SDK methods.
To request the location for devices running both below/above Android 10, refer to the following piece of code.
Specify the tracking modes while you use the Roam.startTracking
method.
Roam has three default tracking modes along with a custom version. They differ based on the frequency of location updates and battery consumption. The higher the frequency, the higher the battery consumption. You must use the foreground service for continuous tracking.
Mode
Battery usage
Updates every
Optimized for/advised for
Active
6% - 12%
25 ~ 250 meters
Ride Hailing / Sharing
Balanced
3% - 6%
50 ~ 500 meters
On Demand Services
Passive
0% - 1%
100 ~ 1000 meters
Social Apps
The SDK also provides a custom tracking mode that allows you to customize and build your own tracking modes.
With distance interval tracking you create a tracking mode with a distance interval in meters of your choice.
Type
Unit
Unit Range
Distance Interval
Meters
1m ~ 2500m
Distance between location updates example code:
With Time Interval Tracking you can create a tracking mode with the time interval (in seconds) of your choice.
Type
Unit
Unit Range
Time Interval
Seconds
10s ~ 10800s
Time between location updates example code:
You may see a delay if the user's device is in low power mode or has connectivity issues.
To stop tracking, use the method below.
Listeners are needed to consume the location or event data from the SDK. To enable listeners, ensure the following:
To listen to location updates, create a class that extends RoamReceiver.
Register the receiver by adding a receiver element to the application element in your manifest.
Add the code to the receiver.
Batch configuration lets you control the number of location data updates being received in the location listener with the desired frequency and window.
As the name suggests, this method sets the configuration parameters.
The NetworkState.BOTH
indicates the state in which the updates are to be received. It can either be set to online, offline, or both.
The batchCount
indicates the size of the location batch.
The batchWindow
indicates the time interval for every consecutive update (frequency of updates).
Consider the following call,
Roam.setBatchConfig("NetworkState.Both
", 5 , 60)
The batch count value is the number of location updates sent in a batch. In the above case, the value is set to 5. Ideally, the SDK sends 5 updates per batch and the batch window (in the above case, 60) specifies the number of seconds the SDK waits to receive five location updates.
If the SDK receives 5 location updates in less than 60 seconds, the updates are pushed to the listener. If not, it waits for 60 seconds and pushes the location updates regardless of the batch count value.
Success Callback - We receive a list of BatchReceiveConfig objects.
Example response:
[{"batchCount":5,"batchWindow":10,"networkState":"OFFLINE"}, {"batchCount":5,"batchWindow":10,"networkState":"ONLINE"}]
Error Callback: We receive a RoamError object in the error callback.
The available details to get from the RoamError object are: error.getMessage() and error.getCode()
The get receiver config method allows the user to get the current batch configuration for the location listener.
The response for the above code is the same as that of the Set Receiver Config method.
The Reset Batch Configuration method allows the user to reset the batch config for the location listener.
Explore how to publish and subscribe locations for Android.
Once our SDK is initialized, we need to create or get a user to start the tracking and use other methods. Each user created will have a unique Roam identifier which will be used later to login and access developer APIs. You can call it Roam userId.
Adding metadata to users is optional and you can pass null while creating users to ignore that field.
The "user description" option can be used to update your user information such as name, address or add an existing user ID. Make sure the information is encrypted if you are planning to save personal user information like email or phone number.
You can always set or update user descriptions and meta-data later using the code below.
If you already have a Roam userID that you would like to reuse instead of creating a new user, use the below to get the user session.
To publish and subscribe to location data, startSelfTracking
methods have to be changed to startTracking
Specify the tracking mode while you use the startTracking
method Roam.startTracking
Our SDK also provides a custom tracking mode that allows you to customize and build your own tracking modes.
Distance between location updates example code:
Time between location updates example code:
You may see a delay if the user's device is in low power mode or has connectivity issues.
To stop the tracking use the below method.
Publishing will help publish location data that will be stored in our database and sent to Roam servers for further processing.
Location data will be published and sent to the Roam servers for further processing. The data will be saved on our database servers.
You can now send custom meta-data json values along with location data in publishAndSave
method.
To stop publishing locations,
Now that you have enabled the location listener, use the below method to subscribe to your own or other user's location updates and events.
You can pass an empty user_id which is an optional field from v0.0.14 to unsubscribe from all the users.
Before adding listeners for locations and other data, we need to toggle the listener flags for the user in order to get the data.
To do that, you need to set the location and event listener to true
using the below method. By default, the status will be set to false
and needs to be set to true
in order to stream the location and event updates to the same device or other devices.
You can also get the current status of listeners with the below method.
To listen to events on the server-side, you should enable events for the user using the method below.
Now, to listen to location updates and events, create a class that extends RoamReceiver. Then register the receiver by adding a receiver element to the application element in your manifest.
Then add the code to the receiver.
The first step is to configure the Android SDK.
Roam SDKs reject Mock Locations on the device by default.
To enable accuracy engine for Passive, Active, and Balanced tracking
For Custom tracking modes, you can pass the desired accuracy values in integers ranging from 1 - 150m.
For disabling accuracy engine
Use setForegroundNotification
method to notify the user about location tracking in the notification bar. Set ENABLE as true to enable notification and false to disable the notification.
Explore how to resume a trip on Android with Trips v2.
The Resume Trip method allows you to resume the trip with the previously paused tripID.
The trip response and its parameters are similar to those of the createTrip method.
Explore how to sync a trip on Android with Trips v2.
Sync Trip allows you to sync a local trip to the server by using tripID.
You can access the sync trip response parameters below:
Roam has three default tracking modes along with a custom version. They differ based on the frequency of location updates and battery consumption. The higher the frequency, the higher the battery consumption. You must use for continuous tracking.
Mode
Battery usage
Updates every
Optimised for/advised for
Active
6% - 12%
25 ~ 250 meters
Ride Hailing / Sharing
Balanced
3% - 6%
50 ~ 500 meters
On Demand Services
Passive
0% - 1%
100 ~ 1000 meters
Social Apps
Type
Unit
Unit Range
Distance Interval
Meters
1m ~ 2500m
Time Interval
Seconds
10s ~ 10800s
Type
Description
Roam.Subscribe.EVENTS
Subscribe to your own events.
Roam.Subscribe.LOCATION
Subscribe to your own location (or) other user's location updates.
Roam.Subscribe.BOTH
Subscribe to your own events and location (or) other user's location updates.
Parameter
Description
STATE
RoamTrackingMode.AppState.FOREGROUND (or)
RoamTrackingMode.AppState.BACKGROUND (or)
RoamTrackingMode.AppState.ALWAYS_ON
Parameter
Description
Boolean
true (default) -- Offline location enabled. false -- Offline location disabled.
Parameter
Description
Boolean
false (default) -- Mock location disabled.
true -- Mock location enabled
response.getCode()
Integer
The success response code of the method.
response.getMessage()
String
The success response message of the method.
response.getDescription()
String
The error response description of the method.
response.getData().getTripId()
String
Unique identifier for the object.
response..getData().getIsSynced()
boolean
The boolean value to determine if the trip is synced.
Explore how to update a trip on Android with Trips v2.
The Update Trip method allows you to update your trip details at any point in time. However, you can update the stop locations as long as the trip has not started. You need to create a new object or update the existing trip, assign it with the RoamTrip()
class and pass the trip object to Roam.updateTrip(trip)
.
The trip response and its parameters are similar to those of the createTrip() method.
There's no need to exclusively specify if the trip is local using a boolean value. The updateTrip() method will check that for you and update the trip details accordingly.
Explore how to start a trip on Android with Trips v2.
The Start Trip method allows you to start a planned trip with the previously created tripID.
The trip response and its parameters are similar to those of the createTrip() method.
Explore how to start a quick trip on Android with Trips v2.
A Quick Trip creates and starts a trip immediately with a single method. Creating a quick trip is similar to creating a trip.
metadata
JSONObject
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripName
String
Name of the trip
tripDescription
String
Trip description
isLocal
boolean
Value determining if the trip is a local trip.
Along with the above trip object, you need to pass an additional parameter for trackingMode
which is optional and defaults to active tracking mode.
To start a quick trip in custom tracking mode, refer to the following code snippet block.
The list of responses and error parameters are given below with their descriptions.
To access the status parameters:
response.getCode()
Integer
The response code of the method.
response.getMessage()
String
The response message of the method.
To access trip responses:
getTripDetails().getTripId()
String
Unique identifier for the object.
getTripDetails().getMetadata()
Object
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
getTripDetails().getTripName()
String
The trip name
getTripDetails().getTripDescription()
String
The trip’s description
getTripDetails().getTripState()
String
The current state of the trip is either created, started, or ended.
getTripDetails().getIsLocal()
boolean
The value determining if the trip is a local trip.
getTripDetails().getTotalDistance()
double
The total distance covered by the user for this trip.
getTripDetails().getTotalDuration()
double
The total duration taken by the user for this trip.
getTripDetails().getTotalElevationGain()
double
The total elevation gain covered by the user for this trip.
getTripDetails().createdAt()
String
Timestamp of when the trip was created
getTripDetails().updatedAt()
String
Timestamp of when the trip was updated
getTripDetails().startedAt()
String
Timestamp of when the trip was started by the user
getTripDetails().endedAt()
String
Timestamp of when the trip was ended by the user
To access user details:
getUser().getId()
String
Unique identifier for the object.
getUser().getMetadata()
Object
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
getUser().getDescription()
String
User description
getUser().getName()
String
The user's full name
To access error details:
error.getErrorCode()
Integer
The error response code of the method.
error.getErrorMessage()
String
Error response message of the method.
error.getErrorDescription()
String
Error response description of the method.
error.getErrors().get(i).getMessage()
String
Message for error detail.
error.getErrors.get(i).getField()
String
The field for error detail.
Explore how to end a trip on Android with Trips v2.
the End Trip method allows you to end the trip with the previously created tripID. If you want to stop tracking, then you can pass stopTracking as true
or false
.
The trip response and its parameters are similar to those of the createTrip method.
Explore how to subscribe to a trip on Android with Trips v2.
You can subscribe to a trip using the tripID to get real-time trip data.
Once you subscribe to the trip, you will receive real time trip data in the listener method of RoamReceiver sub-class.
Listeners are needed to consume the location data from the SDK itself. In order to enable listeners, ensure the following.
To listen to location updates, create a class that extends RoamReceiver. Then, register the receiver by adding a receiver element to the application element in your manifest.
Then add the code to the receiver.
You can access the subscribed trip response parameters below:
You can also unsubscribe from the trip using its tripID.
Explore how to pause a trip on Android with Trips v2.
The pause trip method allows you to pause the trip with the previously created tripID.
The trip response and its parameters are similar to those of the createTrip method.
Explore how to get the details of a trip on Android with Trips v2.
To get the details of the trip anytime, you can use the Roam.getTrip("tripId") method by passing the tripID.
The trip response and its parameters are similar to those of the createTrip method.
There's no need to exclusively specify if the trip is local or not using a boolean value. The getTrip()
method will check that for you and update the trip details accordingly.
Explore how to get a user's active trips on Android with Trips v2.
To get the users' active trips, you can use the Roam.getActiveTrips(isLocal)
method where the value of isLocal is boolean. The value being true returns all the local trips and value being false, returns all active trips created on the server side.
The Get Active trips method returns all the trips in the form of a list. The parameters and responses are similar to those of the createTrip()
method.
Explore how to delete a trip on Android with Trips v2.
You can delete the trip irrespective of any trip state. To delete the trip, you need to use the tripID with Roam.deleteTrip("tripId") method.
You can access the delete trip response parameters below:
Explore how to get the summary of a trip on Android with Trips v2.
To get a summary of the trip anytime, you can use the Roam.getTripSummary("tripId") method by passing the tripID.
The trip response and its parameters are similar to those of the createTrip()
method.
You don't need to mention if the trip is local trip with a boolean value. The getTripSummary() method will check that for you and return the trip details accordingly.
roamTripStatus.getTripId()
String
Unique identifier for the object.
roamTripStatus.getSpeed()
double
Current speed of the subscribed trip
roamTripStatus.getDistance()
double
The total distance covered by the user for this trip.
roamTripStatus.getDuration()
double
The total duration taken by the user for this trip.
roamTripStatus.getStartedTime()
String
The timestamp of when the trip was started by the user
roamTripStatus.getPace()
double
The current pace of the subscribed trip
roamTripStatus.getLatitude()
double
Current latitude coordinates of the subscribed trip
roamTripStatus.getLongitude()
double
Current longitude coordinates of the subscribed trip
roamTripStatus.getAltitude()
double
Current altitude of the subscribed trip
roamTripStatus.getElevationGain()
double
The elevation gain covered by the user for this trip.
roamTripStatus.getTotalElevation()
double
The total elevation gain covered by the user for this trip.
response.getCode()
Integer
The success response code of the method.
response.getMessage()
String
The success response message of the method.
response.getDescription()
String
Error response description of the method.
response.getTrip().getTripId()
String
Unique identifier for the object.
response..getTrip().getIsDeleted()
boolean
Boolean value to determine if the trip has been deleted.
Explore all documentation for iOS
The Roam iOS SDK makes it quick and easy to build a location tracker for your iOS app. We provide powerful and customizable tracking modes and features that can be used to collect your users’ location
To use the Roam SDK, the following things are required:
Get yourself a free Roam Account. No credit card required.
Create a project and add an iOS app to the project.
You need the SDK_KEY (available in your project settings) to initialize the SDK.
You’re now ready to integrate the SDK into your iOS application.
The Roam iOS SDK requires Xcode 10.0 or later and is compatible with apps targeting iOS version 10 and above.
The Roam Example repository on GitHub includes example apps that demonstrate the use of the v3 Roam SDK for iOS.
See Swift's example app in Example/
.
To run an example app, clone this repository, add your publishable YOUR-PUBLISHABLE-KEY
key in AppDelegate.swift
, and build the app.
Make sure the bundle_id is the same as the one registered on our Roam Playground dashboard.
To integrate the Roam SDK, you need a Roam account.
Go to Xcode > File > New Project
Configure the information property list file Info.plist
with an XML snippet that contains data about your app. You need to add strings for NSLocationWhenInUseUsageDescription
in the Info.plist
file to prompt the user during location permissions for foreground location tracking. For background location tracking, you also need to add a string for NSLocationAlwaysUsageDescription
and NSLocationAlwaysAndWhenInUseUsageDescription
in the same Info.plist
file.
Next, you need to enableBackground fetch
and Location updates
under Project Setting
> Capabilities
> Background Modes
.
There are several ways to integrate the Roam Mobile SDK for iOS into your own project:
Swift Package Manager
CocoaPods
Carthage (Will be added soon)
Dynamic Frameworks
Swift Package Manager is distributed with Xcode. To start adding the AWS SDK to your iOS project, open your project in Xcode and select File > Swift Packages > Add Package Dependency.
Enter the URL for the Roam SDK for iOS Swift Package Manager GitHub repo (https://github.com/roam-ai/roam-ios) into the search bar and click Next.
You'll see the repository rules for which version of the SDK you want the Swift Package Manager to install. Choose the first rule, Version, and select Up to Next Minor as it will use the latest compatible version of the dependency that can be detected from the main branch, then click Next.
Select roam-ios
, then click Finish.
You can always go back and modify which SPM packages are included in your project by opening the Swift Packages tab for your project: Click on the Project file in the Xcode navigator, then click on your project's icon, then select the Swift Packages tab.
Follow the steps below to add the SDK to the project using CocoaPods. Add the below to the Podfile
Then run pod install
.
This will add the Roam SDK and its dependencies to your project. The Roam SDK depends on CoreLocation
, AWSMobileClient
and AWSIoT
for fetching locations and its transmission to our servers. The SDK supports iOS 10 and above.
If you’re not familiar with using Cocoapods or prefer manual installation, we’ve added a ZIP file to the SDK. Use this link to download the Roam.zip file.
Unzip the file and add the Roam Roam.framework
to your Xcode project by dragging the file into your Project Navigator.
You can do this by selecting the project file in the navigator on the left side of the Xcode window, and then navigating to the Linked Frameworks and Libraries section. From there, click the “+” button to add the Roam framework. You will also want to add the following frameworks from this link.
Make sure the the added frameworks under Linked Frameworks and Libraries section are selected as Embed & Sign
Roam SDK offers a flexible method of initialization, allowing developers to seamlessly integrate our services into their applications. With our latest update, we've introduced a new initialization approach using property list files (plist). This method provides an effortless way to set up your Roam SDK without the need for additional code.
Using Property List (plist) Initialization:
Optional Parameter: Publish Key
The publishKey
parameter in the initialization method is now optional.
If you've added your Roam publish key to your project's .plist
file, there's no need to pass the publishKey
parameter during initialization.
Configure Your .plist File:
In your info.plist
file, declare your Roam publish key as follows:
Replace "$(ROAM_PUBLISH_KEY)"
with your actual Roam publish key.
Using XCConfig File (Optional):
Alternatively, you can use an XCConfig file to feed the Roam publish key to the plist file.
In your XCConfig file, add the following line, replacing XXXXXXXXXXXXXX
with your Roam publish key:
Initialization Code:
Initialize Roam SDK in your application as follows:
If the publish key is added to the plist, the initialize
method can be called without passing any parameters.
By following these steps, you can seamlessly initialize Roam SDK using property list files, simplifying the integration process and saving valuable development time.
Using AppDelegate Initialization:
Add the following code to AppDelegate
file. This code imports the SDK and allows the SDK to use other methods.
After import, add the below code underapplication(_:didFinishLaunchingWithOptions:)
in your AppDelegate
file. The SDK must be initialized before calling any of the other SDK methods using your project's publishable key.
Before you start location tracking, you need to get permission from the user for your application to access locations.
Import CoreLocation
at the top of the AppDelegate
file.
Make the below class declaration for Location Manager and add this line before the return statement in application(_:didFinishLaunchingWithOptions:)
With this line, you ask users to allow the app to access location data both in the background and the foreground.
Use one of the tracking modes while you use the Roam.startTracking
method.
To stop the tracking use the below method.
Roam has three default tracking modes along with a custom version. They are different based on the frequency of location updates and battery consumption. The higher the frequency, the higher the battery consumption.
Mode
Battery usage
Updates every
Optimised for/advised for
Active
6% - 12%
25 ~ 250 meters
Ride Hailing / Sharing
Balanced
3% - 6%
50 ~ 500 meters
On Demand Services
Passive
0% - 1%
100 ~ 1000 meters
Social Apps
The SDK also provides a custom tracking mode which allows you to customize and build your own tracking mode as per your requirement.
Type
Unit
Unit Range
Distance Interval
Meters
1m ~ 2500m
Distance between location updates example code:
Type
Unit
Unit Range
Time Interval
seconds
1s - 10000s
Time between location updates example code:
To listen to location updates, create a class that implements RoamDeleagate and then call Roam.delegate.
Set your RoamDeleagate in a code path that will be initialized and executed in the background. For example, make your AppDelegate implement RoamDeleagate, not a ViewController. AppDelegate will be initialized in the background, whereas a ViewController may not be.
Batch configuration lets you control the number of location data updates being received in the location listener with the desired frequency and window.
As the name suggests, this method sets the configuration parameters.
The networkState
indicates the state in which the updates are to be received. It can either be set to online, offline, or both.
The batchCount
indicates the size of the location batch.
The batchWindow
indicates the time interval for every consecutive update (frequency of updates).
Consider the following call,
Roam.setBatchConfig("
networkState.Both", 5 , 60)
The batch count value is the number of location updates sent in a batch. In the above case, the value is set to 5. Ideally, the SDK sends 5 updates per batch and the batch window (in the above case, 60) specifies the number of seconds the SDK waits to receive five location updates.
If the SDK receives 5 location updates in less than 60 seconds, the updates are pushed to the listener. If not, it waits for 60 seconds and pushes the location updates regardless of the batch count value.
Success Callback - We receive a list of BatchReceiveConfig objects.
Example response:
[{"batchCount":5,"batchWindow":10,"networkState":"offline"}, {"batchCount":5,"batchWindow":10,"networkState":"online"}]
Error Callback: We receive a RoamError object in the error callback.
The available details to get from the RoamError object are: error.getMessage() and error.getCode()
The get receiver config method allows the user to get the current batch configuration for the location listener.
The Reset Batch Configuration method allows the user to reset the batch config for the location listener.
Call the method to update the current location of a user.
Using the updateCurrentLocation
method, you can update the user's current location. You can set the accuracy between 5 and 100 meters (default is 10).
You can now send custom meta-data JSON values along with updateCurrentLocation
method.
Call the method to periodically pick up a user's location when they are stationary. Customize the time interval in seconds.
By using this method updateLocationWhenStationary
, location will update every x
seconds when the device goes into a stationary state.
Except for time-based custom tracking, this will operate in all tracking modes, including active, passive, balance, and distance based custom tracking.
Explore the Android utility methods related to location permissions.
This method gets the FCM DeviceToken
from the SDK.
Check whether your app has location permission. Returns a boolean, which is true
if location permission has been granted or false
otherwise.
Check if the device has location services enabled. This method returns a boolean, which is true
if the location services are on and false
otherwise.
This utility method checks whether your app has background location permissions. It returns a boolean as true
if background location permission has been granted, or false
otherwise.
Call this method to request the user to enable location permissions.
Call this method to enable location services.
Call this method to request the user to enable background location permissions.
Check whether location tracking has been started or not. This method returns a boolean value.
Using the updateCurrentLocation
method, you can update the user's current location and set the accuracy ranging from 10 to 100 meters (default is 10).
Logout from Roam SDK using the logout()
method.
NOTE - You need to reinitialize the SDK to login again.
By using this method inside FirebaseMessagingService class, track the campaign impressions and counts.
When running the SDK on Android 6 (and higher), it is recommended to ask the user to disable battery optimization for your application. This ensures that location tracking continues to work when the device is in Doze mode.
After explaining the benefits of disabling battery optimization, call the disableBatteryOptimization()
method of the Roam class.
This will trigger a system dialog asking the user to allow disabling battery optimization for your app.
Keep yourself updated on any Android changes.
We're excited to introduce Roam Android SDK version 0.1.23, focusing on refining our location filters to improve accuracy during location tracking. In this update, we've made the following improvement:
Enhanced Location Filtering: We've refined our location filters to effectively discard drifts and noises during location tracking. This enhancement aims to improve the accuracy and reliability of location data, ensuring a more precise representation of user movement.
These improvements are geared towards providing a more accurate and dependable location tracking experience for developers and users. We're dedicated to enhancing your tracking capabilities and ensuring a smoother operational experience. Should you have any inquiries or feedback, our support team is readily available to assist you.
We're excited to introduce Roam Android SDK version 0.1.22, focusing on refining our location filters to improve accuracy during location tracking. In this update, we've made the following improvement:
Enhanced Location Filtering: We've refined our location filters to effectively discard drifts and noises during location tracking. This enhancement aims to improve the accuracy and reliability of location data, ensuring a more precise representation of user movement.
These improvements are geared towards providing a more accurate and dependable location tracking experience for developers and users. We're dedicated to enhancing your tracking capabilities and ensuring a smoother operational experience. Should you have any inquiries or feedback, our support team is readily available to assist you.
We're thrilled to present Roam Android SDK version 0.1.21, focusing on bolstering our security module. In this update, we've made significant improvements to enhance the security module of location tracking. Here's what's new:
Efficient Spoofed Location Detection: Our security algorithm has been refined to efficiently discard spoofed locations during the initial location fix. This enhancement ensures that only genuine and accurate location data is captured, enhancing the authenticity of the information gathered.
Addressing False Negatives: We've tackled false negatives during location tracking, ensuring that true locations are not mistakenly identified as spoofed locations. This refinement enhances the precision of location tracking, providing you with reliable and accurate data.
These security enhancements are designed to safeguard your data and ensure the integrity of the location information collected by the Roam Android SDK. Your security is our priority, and we're committed to providing you with a secure and trustworthy experience. If you have any questions, concerns, or feedback, our support team is always here to assist you.
We are thrilled to introduce Roam Android SDK version 0.1.20, a significant step forward in enhancing your tracking experience. Here's what's new:
New Callbacks for Enhanced Control: With added success and error callbacks to methods like startTracking
, stopTracking
, subscribe
, unSubscribe
, publishAndSave
, and stopPublishing
, you now have precise control and real-time feedback for every SDK action.
Extended Security Checks: We've expanded the toggleSecurity()
method with two vital parameters. Now, you can check for connected external accessories and Bluetooth status, bolstering security measures for your application.
Your feedback has played a pivotal role in shaping these enhancements. Should you have any questions, encounter issues, or want to share your experiences, our dedicated support team is here to assist you.
We're excited to announce the latest release of the Roam Android SDK, version 0.1.19. This update brings a significant enhancement that contributes to heightened security and user control. Read on to discover the key highlights of this release:
New Feature: Motion Detection Security
With Roam Android SDK v0.1.19, we introduce an innovative security feature—Motion Detection. This cutting-edge capability adds an extra layer of protection to your application's tracking experience. By enabling the verifyMotion parameter in the toggleSecurity()
method, developers can now leverage motion patterns to enhance security. This empowers you to monitor and respond to unusual motion activities, ensuring a safer and more reliable tracking environment.
Your feedback and insights have been instrumental in shaping the Roam Android SDK, and we're grateful for your ongoing support. If you have any questions, suggestions, or need assistance, please don't hesitate to contact our support team. As we strive to continually refine and enhance the SDK, look forward to more updates on the horizon.
We're pleased to unveil Roam Android SDK version 0.1.18, showcasing an exciting new feature that enhances security and user control. Here's an overview of the latest updates:
New Security Module: Roam
In this release, we introduce the Roam Security Module, a powerful addition to the SDK's arsenal. With the Roam module, developers now have access to the toggleSecurity()
method, a versatile tool that allows the seamless activation and deactivation of advanced security mechanisms. Prioritizing data security is vital, and the Roam Security Module empowers developers to safeguard sensitive information more effectively.
Your feedback and insights have been instrumental in shaping the Roam Android SDK, and we're grateful for your ongoing support. If you have any questions, suggestions, or need assistance, please don't hesitate to contact our support team. As we strive to continually refine and enhance the SDK, look forward to more updates on the horizon.
Added a new feature to get publish key from local.properties gradle file.
Fixed order of callbacks for create and get user methods and MQTT connection.
Added stationary duration for all tracking modes except time base.
Fixed noise and duplicate locations update.
Improved location accuracy.
Added post notification support for android 13.
Removed work manager concept from SDK.
Fixed work manager dependency version for react native SDK support.
Fixed dynamic distance filter logic.
Fixed location update gap in time base tracking.
Added noise filter in time base tracking.
Fixed batch location update issue.
Fixed trip sync issue.
Fixed multiple location update and speed inconsistent issue.
Fixed multiple callback issue for trip methods.
Added activity recognition to reduce battery consumption for default tracking modes.
Added basic ingest publish topic for aws cost optimisation.
Fixed deprecated code and time out error for get current location method.
Fixed deprecated code and time out error for get current location method.
Fixed get current location method.
Removed isTripSynced method (no longer required).
Fixed updateCurrentLocation method, RoamPublish param can be null.
Fixed getActiveTrip method, if isLocal is true then get offline trips in response and vice-versa.
Fixed getActiveTrip method, trip stops point should be in response.
Fixed updateTrip method, isLocal param should not be required to update a trip.
Added SDK installation support for android 13.
Added hourly location count feature.
Fixed the Roam SDK installation support for android 13.
Added magnetic bearing support.
Added meta data support for setDescription method.
Added tracking config feature.
Added app service class parameter to setForegroundNotification method.
Added magnetic bearing feature in SDK.
Added metadata support for the setDescription()
method.
Added custom configuration support for Roam.initialize() method .
Fixed the noise location update for distance-based tracking and stationary location update.
Fixed the execution order of MQTT connection callback and createUser/getUser method's callback.
Fixed location update gap in stationary location update.
Fixed location update when the device gets restarted.
Fixed tracking config logic for time base tracking.
Added:
There should be a locations count field.
Batch update support for the trip listener.
Batch update support for location listener.
Network listener method for connectivity change.
Modified:
Create trip method should support creating trips without a user id.
Subscribe trip method should support the online trip.
Update trip method should be based on trip state.
Sync trip should have speed parameter.
Roam trip status should have trip state as parameter.
Unsubscribe trip method support for multiple trips.
Update time stamp field in trip listener.
Trip status code for control trip .
Fixed:
Offline trip reached_stop and left stop event are not getting called.
Drift issue fix.
Added course field for offline trip
Fixed:
Fixed location update gap in distance-based tracking.
Fixed stationary noise locations update when device gets stationary.
Fixed:
Fixed Timestamp of offline trip events.
Added:
Tracking configuration method for location accuracy improvement.
Added:
Unsubscribe trip method for multiple trips ID.
Added timestamp field in the trip status listener.
Fixed quick trip response.
Fixed:
Location drift issue.
Receiver intent leaking issue
Added:
Batch location update feature for trips.
Fixed:
Location listener and connectivity change listener issue.
Added:
Network listener method for connectivity change.
Added:
Batch location update feature.
Location count field for trips.
Modified:
Trip errors response.
Fixed:
Fixed time-based tracking issue.
Modified:
RoamPublish parameter as optional in updateCurrentLocation method.
Fixed:
Removed noise locations update when the device gets idle during tracking.
Fixed:
Connection configuration for security and performance.
Fixed:
Fixed stationary location update issue.
Fixed:
Fixed logical error in the calculation of elevation gain in trips summary.
Fixed:
Added option in Roam.unSubscribe()
which will now unsubscribe all users if user_id
is passed as null or empty.
Added battery and network details as part of location in location receiver. Fixed invalid location update data.
Fixed:
Foreground notification method support for android 12.
Fixed:
SDK installation support for Android 12.
Modified:
Removed location permission status frequent updates.
Added:
Added "initialize validation" for each method.
Modified:
Removed user-id validation for offline trips in the createTrip
method.
Added:
Added foreground service notification in SDK.
Added elevation gain support for offline trips.
Removed user-id validation for offline trips.
Added:
Implemented location permission status.
Added:
Support location subscription for cross-project within the same Account.
Fixed:
Issue fixed on the location receiver method.
Modified:
Make startTrip
independent by combining it with startTracking
and createTrip
methods
Added:
metadata
support for users and trips were added
Modified:
Added:
Added the total elevation gain parameter to the already existing elevation gain, distance, and duration parameters in the trip summary.
Fixed:
Fixed location receiver callbacks.
The first version of Roam Android SDK
If you enable code shrinking, obfuscation, and optimization in your project's release build type minifyEnabled true, add the below line to your .
The Roam SDK is capable of sending push notifications to your users. to get the device token.
Moreover, on Android Pie, disabling battery optimization prevents Adaptive Battery from your app based on usage and , which can impact the detection quality of the SDK.
Updated new trip V2 methods. Refer to the .
Resolves Allow meta-data support for updating location ie. updateCurrentLocation
method
Removed:
Resolves Combine startTracking
and startSelfTracking methods
Resolved Combined startTracking and startSelfTracking methods
Parameter
Description
DesiredAccuracy
RoamTrackingMode.DesiredAccuracy.HIGH or RoamTrackingMode.DesiredAccuracy.MEDIUM or RoamTrackingMode.DesiredAccuracy.LOW
Explore the iOS SDK Methods for Trip API v1. Check out the latest methods if you are using Trips API v2!
The SDK can start a quick trip with a single function which accepts optional values for tracking modes, origin and destinations.
You can now stop the trip and control the tracking modes directly from the stop trip method. This allows you to either force stop location tracking or change the tracking mode using the stop trip method.
You can also use the below methods to manually create a trip and then use the tripID to start the trip.
Use the code below to create a trip directly from the SDK. Set the Boolean value to true
to create an offline trip and false
to create an online trip.
Start trip starts the trip with the previously created tripID.
Pause trip pauses a previously started trip with its tripID.
Resume trip resumes a previously paused trip.
Subscribe to tripStatus
using the tripId
to get real-time trip status.
To stop receiving trip status updates, use the method below.
Explore how to publish and subscribe locations for iOS.
User sessions are mandatory for pub/sub tracking. Without user sessions, location tracking will continue to work as self tracking and pub/sub methods will return error callbacks.
Once the SDK is initialized, you need to create or get a user to start the tracking and use other methods. Each user created will have a unique Roam identifier which will be used to login and access developer APIs. We call this the Roam user_Id
.
The "user description" option can be used to update user information such as name, address or add an existing user ID. Make sure the information is encrypted if you are planning to save personal information like an email ID or phone number.
You can always set or update user descriptions and meta-data later using the code below.
If you already have a Roam user_ID
that you would like to reuse instead of creating a new user, use the code below to get a user session.
Location data will be published and sent to the Roam servers for further processing. The data will be saved on our database servers.
To stop publishing the location data to other clients.
Now that you have enabled the location listener, use the below method to subscribe to your own or other user's location updates and events.
Type
Description
RoamSubscribe.Events
Subscribe to your own events.
RoamSubscribe.Location
Subscribe to your own location (or) other user's location updates.
RoamSubscribe.Both
Subscribe to your own events and location (or) other user location updates.
You can pass an emptyuser_id
which is an optional field from v0.0.16 to unsubscribe from all users.
Listeners are needed to consume the location or event data from the SDK.
In order to enable listeners, the following must be ensured.
Before adding listeners for locations and other data, we need to toggle the listener flags for the user in order to get the data.
To do that, you need to toggle the location and event listener to true
. By default, the status will be set to false
and needs to be set to true
in order to stream the location and event updates to the same device or other devices.
You can also get the current status of listeners with this method.
To listen to events on the server-side, you should enable events for the user using the below method.
Set your RoamDelegate
in a code path that will be initialized and executed in the background. For example, ensure that your AppDelegate
and not the ViewController
implements RoamDelegate
. The reason being, AppDelegate
will be initialized in the background, whereas a ViewController
may not be.
The first step is to configure the iOS SDK.
Parameter
Description
STATE
RoamTrackingState.Foreground (or) RoamTrackingState.Background (or)
RoamTrackingState.AlwaysOn
Parameter
Description
Bool
true (default) -- Offline location enabled. false -- Offline location disabled.
For enabling accuracy engine for Passive, Active, and Balanced tracking,
For Custom tracking modes, you can pass the desired accuracy values in integers ranging from 1-150m.
For disabling accuracy engine,
Call the method to get the current location of the user at your desired accuracy level.
This method gets the current location of the user. You can set the accuracy between 5 and 100 meters (default is 10).
Explore how to create a trip on iOS with Trips v2.
To create a trip, you need to create a trip object and assign it with the RoamTrip() class. Below are the parameters and their descriptions for the trip object.
metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripName
string
The trip name
tripDescription
string
The trip’s description
isLocal
boolean
The value determining if the trip is a local trip.
user
string
The user object
stops
array
The list of stop object
When you create a trip, you can add stop locations which are nothing but locations where the user taking the trip will receive events for entry and exit. To create and assign stops to a trip, create objects for a single or multiple stops and assign them with the RoamTripStops() class. Below are the parameters and their descriptions for the stop object.
metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
stopName
string
The stop name
stopDescription
string
The stop description
geometryRadius
number
The stop radius
geometryCoordinates
array
Coordinates with longitude, latitude.
address
string
The stop address
Below is an example code for creating a trip with two stops. Let's create our stop objects.
Now, let's create a trip object and update the parameters along with the stop created above.
Now, with the trip and stop objects created, let's create the trip with Roam.createTrip() method.
The list of responses, error parameters and their description is given below.
To access status parameters:
response?.code
number
The response code of the method.
response?.message
string
The response message of the method.
To access trip response:
Parameter
Type
Description
tripDetails?.tripId
number
Unique identifier for the trip object.
tripDetails?.metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripDetails?.tripName
string
The trip name
tripDetails?.tripDescription
string
The trip description
tripDetails?.tripState
string
The current state of the trip, created, started, or ended.
tripDetails?.isLocal
boolean
Value determining if the trip is a local trip.
tripDetails?.totalDistance
number
The total distance covered by the user for this trip.
tripDetails?.totalDuration
number
The total duration taken by the user for this trip.
tripDetails?.totalElevationGain
number
The total elevation gain covered by the user for this trip.
tripDetails?.createdAt
string
Timestamp of when the trip was created
tripDetails?.updatedAt
string
Timestamp of when the trip was updated
tripDetails?.startedAt
string
Timestamp when the trip was started by the user
tripDetails?.endedAt
string
Timestamp when the trip was ended by the user
To access user details:
Parameter
Type
Description
user?.userId
string
Unique identifier for the user object.
user?.metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
user?.userDescription
string
User description
user?.userName
string
User's full name
To access stop details:
Parameter
Type
Description
stops?[i].stopName
string
The stop name
stops?[i].stopDescription
string
The stop description
stops?[i].metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
stops?[i].geometryRadius
string
The stop radius
stops?[i].geometryCoordinates
array
Coordinates with longitude , latitude.
stops?[i].arrivedAt
string
Timestamp of when the user arrived at the stop
stops?[i].departedAt
string
Timestamp of when the user departed from the stop
stops?[i].address
string
The stop address
To access the error details:
Parameter
Type
Description
error?.code
number
The error response code of the method.
error?.message
string
The error response message of the method.
error?.errorDescription
string
The error response description of the method.
errorDetails?[i].message
string
The message for error details.
errorDetails?[i].field
string
The field for error details.
Explore how to start a trip on iOS with Trips v2.
To start a planned trip, you need to pass the tripID with theRoam.endTrip("tripId")
method.
The trip response and its parameters are similar to those of the createTrip()
method.
Explore how to sync a trip on iOS with Trips v2.
To sync a trip, you need to pass the tripID with the Roam.syncTrip("tripId")
method.
You can access the sync trip response parameters below:
response?.code
number
The success response code of the method.
response?.message
string
The success response message of the method.
response?.messageDescription
string
Error response description of the method.
response?.tripId
string
Unique identifier for the trip object.
response?.isSynced
boolean
Boolean value to determine if the trip is synced.
Explore all of Roam's iOS SDK methods.
Explore the Trips v2 SDK Methods for iOS.
Explore how to end a trip on iOS with Trips v2.
To end the trip, you need to pass the tripID with the Roam.endTrip("tripId")
method.
The trip response and its parameters are similar to those of the createTrip()
method.
Explore how to get the details of a trip on iOS with Trips v2.
To get the details of the trip anytime, you can use the Roam.getTrip("tripId") method by passing the tripId.
The trip response and its parameters are similar to those of the createTrip()
method.
There's no need to exclusively specify if the trip is local or not using a boolean value. The getTrip()
method will check that for you and update the trip details accordingly.
Explore how to pause a trip on iOS with Trips v2.
To pause the trip, you need to pass the tripID with the Roam.pauseTrip("tripId")
method.
The trip response and its parameters are similar to those of the createTrip()
method.
Explore how to get a user's active trips on iOS with Trips v2.
To get the users' active trips, you can use the Roam.getActiveTrips(isLocal)
method where the value of isLocal is boolean. The value being true returns all the local trips and value being false, returns all active trips created on the server side..
The Get Active trips method returns all the trips in the form of a list. The parameters and responses are similar to those of the createTrip()
method.
Explore how to update a trip on iOS with Trips v2.
The Update Trip method allows you to update your trip details at any point in time. However, you can update the stop locations as long as the trip has not started. You need to create a new object or update the existing trip, assign it with the RoamTrip()
class and pass the trip object to Roam.updateTrip(trip)
.
The trip response and its parameters are similar to those of the createTrip() method.
There's no need to exclusively specify if the trip is local using a boolean value. The updateTrip() method will check that for you and update the trip details accordingly.
Explore how to resume a trip on iOS with Trips v2.
To resume the trip, you need to pass the tripID with the Roam.resumeTrip("tripId")
method.
The trip response and its parameters are similar to those of the createTrip()
method.
Explore how to start a quick trip on iOS with Trips v2.
The Start Quick Trip method creates and starts a trip immediately.
To create a quick trip, you need to create an object for the trip and assign it with theRoamTrip()
class. Below are the parameters and their descriptions for the trip object.
metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripName
string
Name of the trip
tripDescription
string
Trip description
isLocal
boolean
Value determining if the trip is a local trip.
Along with the above trip object, you need to pass an additional parameter for trackingMode
which is optional and defaults to active tracking mode.
To start a quick trip with custom tracking mode, refer to the following code:
The list of responses, error parameters and their description is given below.
To access the status parameters:
response?.code
number
The response code of the method.
response?.message
string
The response message of the method.
To access trip response:
tripDetails?.tripId
number
Unique identifier for trip objects.
tripDetails?.metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
tripDetails?.tripName
string
Name of the trip.
tripDetails?.tripDescription
string
Trip description
tripDetails?.tripState
string
The current state of the trip is either created, started, or ended.
tripDetails?.isLocal
boolean
Value determining if the trip is a local trip.
tripDetails?.totalDistance
number
The total distance covered by the user for this trip.
tripDetails?.totalDuration
number
The total duration taken by the user for this trip.
tripDetails?.totalElevationGain
number
The total elevation gain covered by the user for this trip.
tripDetails?.createdAt
string
Timestamp of wen the trip was created
tripDetails?.updatedAt
string
Timestamp of when the trip was updated
tripDetails?.startedAt
string
Timestamp of when the trip was started by the user
tripDetails?.endedAt
string
Timestamp of when the trip was ended by the user
To access user details:
user?.userId
string
Unique identifier for the user object.
user?.metadata
dictionary
A set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
user?.userDescription
string
User description
user?.userName
string
User's full name
To access error details:
error?.code
number
The error response code of the method.
error?.message
string
The error response message of the method.
error?.errorDescription
string
The error response description of the method.
errorDetails?[i].message
string
The message for error detail.
errorDetails?[i].field
string
The field for error detail.
In progress...
Tracking is a process of identifying the location of a mobile phone whether stationary or moving. Our solution includes collecting latitude and longitude coordinates from GPS satellites through the GPS chip present in smartphones with iOS or Android operating systems. Along with the geographical coordinates, we collect a number of other supporting data points.
Location Updates are the GPS Coordinates that are collected along with other data points that aid with the quality of the tracking. A location update is defined by Roam as a collection of the following data points.
tracking_mode
"active"
Roam's tracking mode (active
, balanced
, passive
or custom
) that was set in the SDK when the location was collected
coordinates
77.61679076999997, 12.900112149999995
Longitude, Latitude
speed
5
Speed in kilometers per hour (only during "moving"
activity)
altitude
892.7507934570312
Height above the sea level in meters
course
-1
Direction heading in relation to north
horizontal_accuracy
17.071232461095033
Horizontal accuracy of the coordinates
vertical_accuracy
20.604103088378906
Vertical accuracy of the coordinates
activity
"moving"
Whether the location update was recorded when the user was "moving"
or "stationary"
app_context
"foreground"
Wether the app was open or in the background while the location was recorded at. App States are "foreground"
, "background"
or "terminated"
tz_offset
"+0530"
Timezone where the location was recorded
battery_status
"unplugged"
Wheter the phone was "charging"
or "unplugged"
when the location was recorded
battery_remaining
51
Remaining battery in percentage of device
battery_saver
false
Is battery saver mode enabled on the device
network_status
true
Wheter internet connection is enabled or not
location_permission
true
Wheter location permission is enabled or not
id
"62f2dbd90000c6975aa8f09a"
Unique indentified for the location update
created_at
"2022-08-09T22:12:41.586"
Timestamp of the location update registered in the roam backend database at in UTC (Coordinated Universal Time)
recorded_at
"2022-08-09T22:12:45.796"
Timestamp of the location update recorded by the device in UTC (Coordinated Universal Time)
Location updates collected by the SDK can be consumed in three ways, at the device level directly from the SDK, or using our webhooks for real-time data and the lat gets the historical data of a user using our GET location APIs.
Explore how to get the summary of a trip on iOS with Trips v2.
To get a summary of the trip anytime, you can use the Roam.getTripSummary("tripId")
method and pass the tripID.
The trip response and its parameters are similar to those of the createTrip()
method.
Explore how to subscribe to a trip on iOS with Trips v2.
For you to subscribe to a trip, you need to pass the tripID with the Roam.subscribeTrip("tripId")
method.
Once you subscribe to the trip, you will receive real time trip data in the listener methods
In order to subscribe to the trips with the listener method, you need to make sure the below is implemented.
To listen to location updates, create a class that implements RoamDeleagate
and then call Roam.delegate.
Set your RoamDelegate
in a code path that will be initialized and executed in the background. For example, ensure that your AppDelegate
and not the ViewController
implements RoamDelegate
. The reason being, AppDelegate
will be initialized in the background, whereas a ViewController
may not be.
You can access the subscribed trip response parameters below:
response.tripId
string
Unique identifier for trip objects.
response.speed
double
Current speed of the subscribed trip
response.distance
double
Current distance covered of the subscribed trip
response.duration
double
Current duration taken of the subscribed trip
response.startedTime
string
Timestamp of when the trip was started by the user
response.pace
double
The current pace of the subscribed trip
response.latitude
double
Current latitude coordinates of the subscribed trip
response.longitude
double
Current longitude coordinates of the subscribed trip
You can unsubscribe from trips using the tripID.
Explore the iOS utility methods related to location permissions.
The Roam SDK is capable of sending push notifications to your users. Click here to get the device token.
Check if the location permissions for the app are enabled.
By using the locationPermissionStatus
method you can check the location permission status.
Application request for the user location.
Check whether location tracking has started or not. This method returns a boolean value.
By using this method inside the Notification delegate method you can track the campaign's impressions and counts.
Keep yourself updated on any iOS changes.
We're pleased to announce Roam iOS SDK version 0.1.19, primarily focused on resolving issues related to crashes occurring with Core Data and AWS IoT during location tracking in the background state and other rare scenarios. In this update, we've made the following fixes:
Core Data and AWS-IoT Crash Fixes: Addressed crashes occurring during location tracking in the background state and other infrequent scenarios related to Core Data and AWS IoT integrations. Users can now expect improved stability and reliability when utilizing these features.
These fixes aim to enhance the overall stability of the SDK, ensuring a smoother experience for developers and users alike. We're committed to providing a robust and dependable SDK. If you encounter any further issues or have feedback to share, please reach out to our support team. We're here to assist you promptly.
We're excited to introduce Roam iOS SDK version 0.1.18, focusing on enhancing our network module and refining tracking logics. In this update, we've made the following improvements:
Enhanced Connectivity during Location Tracking: We've revamped the network module to handle few edge-cases on connectivity during location tracking. Expect smoother and more reliable communication between your app and Roam's services, ensuring a seamless experience for users even in challenging network conditions.
Minor Improvements to Tracking Logics: We've implemented minor refinements to our tracking logics. These subtle enhancements aim to fine-tune the tracking mechanisms, resulting in improved accuracy and efficiency when capturing and processing location data.
These improvements are geared towards providing a more robust and consistent experience for developers and users alike. We're dedicated to optimizing your tracking capabilities and ensuring a smoother operational experience. Should you have any inquiries or feedback, our support team is readily available to assist you.
We're thrilled to present Roam iOS SDK version 0.1.17, focusing on bolstering our security module. In this update, we've made significant improvements to enhance the security of location data. Here's what's new:
Efficient Spoofed Location Detection: Our security algorithm has been refined to efficiently discard spoofed locations during the initial location fix. This enhancement ensures that only genuine and accurate location data is captured, enhancing the authenticity of the information gathered.
Addressing False Negatives: We've tackled false negatives during location tracking, ensuring that true locations are not mistakenly identified as spoofed locations. This refinement enhances the precision of location tracking, providing you with reliable and accurate data.
These security enhancements are designed to safeguard your data and ensure the integrity of the location information collected by the Roam iOS SDK. Your security is our priority, and we're committed to providing you with a secure and trustworthy experience. If you have any questions, concerns, or feedback, our support team is always here to assist you.
We're excited to introduce Roam iOS SDK version 0.1.16, focusing on refining connectivity and enhancing tracking performance. In this update, we've made the following improvements:
Enhanced Connectivity: We've optimized the SDK's connectivity, ensuring smoother communication between your app and Roam's services. This enhancement leads to a more stable and reliable connection experience.
Improved Tracking Performance: Our team has worked diligently to enhance the overall tracking performance of the Roam iOS SDK. Expect better accuracy, responsiveness, and efficiency when tracking user data, providing a seamless experience for your users.
These improvements are designed to elevate your tracking capabilities and provide a more robust experience for both you and your users. As always, your feedback is invaluable to us. For any inquiries, support, or to share your feedback, don't hesitate to reach out to our dedicated support team. We're here to assist you every step of the way.
We're thrilled to announce the release of Roam iOS SDK version 0.1.15, bringing powerful enhancements and simplified integration. Here's what's new:
Callback Integration: We've added callbacks to essential methods like startTracking
, stopTracking
, subscribe
, unSubscribe
, publishAndSave
, and stopPublishing
. These callbacks provide clear onSuccess
and onError
methods, ensuring you have complete control and real-time feedback for every SDK action.
Simplified Initialization: Now, initializing the Roam SDK is easier than ever. Simply place your publishable key in the .plist
file, streamlining the setup process and getting you up and running swiftly.
Your feedback has been invaluable in shaping these improvements. For any queries, assistance, or to share your experiences, our support team is here to help.
We're excited to announce the latest release of the Roam iOS SDK version 0.1.14. This update brings a significant enhancement that contributes to heightened security and user control. Read on to discover the key highlights of this release:
New Feature: Motion Detection Security With Roam iOS SDK v0.1.14, we introduce an innovative security feature—Motion Detection. This cutting-edge capability adds an extra layer of protection to your application's tracking experience. By enabling the verifyMotion parameter in the toggleSecurity() method, developers can now leverage motion patterns to enhance security. This empowers you to monitor and respond to unusual motion activities, ensuring a safer and more reliable tracking environment. As always, we appreciate your feedback and contributions in helping us refine and enhance the Roam iOS SDK. Please feel free to reach out to our support team if you have any questions, concerns, or suggestions. Stay tuned for more updates as we continue to improve the SDK's capabilities and features.
We're excited to introduce Roam iOS SDK version 0.1.13, which includes a significant enhancement aimed at strengthening security within the SDK. Here's a breakdown of the latest changes:
New Security Module: Roam We've incorporated an advanced security module named Roam into the SDK. With this release, developers can take advantage of the toggleSecurity() method provided by Roam. This addition allows for seamless enabling and disabling of enhanced security measures. Protecting sensitive data is of paramount importance, and the Roam security module provides a streamlined way to fortify your application's defenses. As always, we appreciate your feedback and contributions in helping us refine and enhance the Roam iOS SDK. Please feel free to reach out to our support team if you have any questions, concerns, or suggestions. Stay tuned for more updates as we continue to improve the SDK's capabilities and features.
Fixed the tracking issue during terminated state for SDK only tracking.
Fixed multiple users creating when calling setDeviceToken
method.
Added few support for new error codes and messages in on didError
delegate.
Fixed a number of crashes that occurred while tracking in specific scenarios, improving the overall stability of the SDK.
Cleared console warnings to improve the developer experience.
Improved user subscription process for a smoother and more streamlined experience.
Improved location tracking logic to improve the accuracy and reliability of the SDK.
Overall performance and stability of the SDK have been improved.
Activity recognition permission issues fixed.
In this release, we have made the following improvements to enhance the user experience of our Roam iOS SDK:
Activity recognition methods: We have added activity recognition methods to the Roam iOS SDK to provide a more accurate and reliable determination of the user's current activity. This will improve the accuracy of location tracking, especially when the user is in motion.
Improved tracking logic: To further improve battery consumption, we have made some changes to our tracking logic. These changes are aimed at ensuring that the Roam SDK is as efficient as possible in terms of energy usage, while still providing accurate location tracking. We are confident that these changes will improve the overall experience of our Roam iOS SDK and we hope you enjoy these enhancements. If you have any questions or concerns, please feel free to reach out to us.
We're excited to introduce Roam iOS SDK version 0.1.13, which includes a significant enhancement aimed at strengthening security within the SDK. Here's a breakdown of the latest changes:
New Security Module: Roam
We've incorporated an advanced security module named Roam into the SDK. With this release, developers can take advantage of the toggleSecurity()
method provided by Roam. This addition allows for seamless enabling and disabling of enhanced security measures. Protecting sensitive data is of paramount importance, and the Roam security module provides a streamlined way to fortify your application's defences.
As always, we appreciate your feedback and contributions in helping us refine and enhance the Roam iOS SDK. Please feel free to reach out to our support team if you have any questions, concerns, or suggestions. Stay tuned for more updates as we continue to improve the SDK's capabilities and features.
Fixed the tracking issue during terminated state for SDK only tracking.
Fixed mutiple users creating when calling setDeviceToken
method.
Added a few support for new error codes and messages on the didError
delegate.
Fixed a number of crashes that occurred while tracking in specific scenarios, improving the overall stability of the SDK.
Cleared console warnings to improve the developer experience.
Improved user subscription process for a smoother and more streamlined experience.
Improved location tracking logic to improve the accuracy and reliability of the SDK.
Overall performance and stability of the SDK have been improved.
Activity recognition permission issue fixed.
In this release, we have made the following improvements to enhance the user experience of our Roam iOS SDK:
Activity recognition methods: We have added activity recognition methods to the Roam iOS SDK to provide a more accurate and reliable determination of the user's current activity. This will improve the accuracy of location tracking, especially when the user is in motion.
Improved tracking logic: To further improve battery consumption, we have made some changes to our tracking logic. These changes are aimed at ensuring that the Roam SDK is as efficient as possible in terms of energy usage, while still providing accurate location tracking.
We are confident that these changes will improve the overall experience of our Roam iOS SDK and we hope you enjoy these enhancements. If you have any questions or concerns, please feel free to reach out to us.
Tweaked the tracking algorithm for efficient battery consumption: We have made changes to our tracking algorithm to optimize battery consumption. The new algorithm is designed to reduce battery usage while maintaining the same level of accuracy and reliability.
Added basic ingest publish topic for AWS cost optimization.
Fixed drift issue for distance-based tracking.
Fixed drift issue for distance-based tracking.
Fixed total elevation issue in sync trip.
Added:
Added elevation gain parameter to trip listener.
Added speed parameter to location listener.
Fixed:
Location calibration when used along with accuracy config and time-based tracking.
Tracking config issue for time-based tracking.
Fixed crash when user received other user location.
Removed blue bar on user logout without stop tracking.
Fixed distance calculation logic for individual route points in RoamTripsSummary.
Added a new Roam.requestAlwaysAuthorization()
method for location permission control.
Making SDK backwards compatible to support Xcode 13.X with Swift v5.6.1.
Location calibration when used along with accuracy config and time-based tracking.
Added elevation gain parameter to trip listener.
Added speed parameter to location listener.
Added support for Roam.initialize() with custom configurations.
Made the SDK backwards compatible to support Xcode 14.x with Swift v5.7 along with the fix for crash issues while receiving other user locations.
Made the SDK backwards compatible to support Xcode 13.x with Swift v5.6.1 along with the fix for the crash issues while receiving other user locations.
Tracking config issue for time-based tracking.
Fixed crash when user received other user location.
Removed blue bar on user logout without stopping tracking.
Added:
Added accuracy config methods for Roam.getCurrentLocation()
, Roam.updateCurrentLocation()
and Time based custom tracking.
Added timestamps to the trip listener data.
Added option to unsubscribe from all the trips in the method Roam.unsubscribeTripStatus()
Added new methods for batch configurations in trips data receiver.
Trips data in a trip receiver is changed from a single object to a list of updates.
Added new methods for batch configurations in location receiver.
Fixed:
Fixed crashing behavior while changing location permission.
Fixed blue bar issue for custom tracking modes.
Fixed location tracking issue when location permission is changed.
The fixed trip listener works independently of the location listener.
Fixes core data for location and trips.
Fixed:
Crash when Roam.getTrip()
is called without starting the trip.
Modified:
Removed user id validation for offline trips.
Create trip without user id. ie. optional
Support to update trip based on trip state.
Added:
Speed parameter to the routes in the trips summary.
Subscribe to online trips.
Modified:
Updated new trip v2 methods. Refer Migration guide for more details.
Fixed:
Fixed distance calculation logic for individual route points in RoamTripsSummary
.
Fixed:
Fixed crashing behavior while changing location permission.
Fixed:
Fixed build issues with v0.0.26.
Added:
Added accuracy config methods for Roam.getCurrentLocation()
, Roam.updateCurrentLocation()
and Time based custom tracking.
Fixed:
Fixed blue bar issue for custom tracking modes.
Fixed location tracking issue when location permission is changed.
Fixes:
Added:
Added timestamps to the trip listener data.
Created option to unsubscribe from all the trips in the method Roam.unsubscribeTripStatus().
The fixed trip listener works independently of the location listener.
Added:
Added new methods for batch configurations in trips data receiver.
Trip data in a trip receiver is changed from a single object to a list of updates.
Fixed:
Fixes core data for location and trips.
Added:
Added callbacks to Roam.resetBatchReceiverConfig
method to return default config values.
Added:
Added new methods for batch configurations in location receiver.
Updated trip error codes.
Fixed:
Fixed calculation for distance and duration for individual location data in trip summary route.
Added:
Added individual distance, duration, and elevation gain for location data inside trip routes for local trips.
Trip summary response for the local trip will have the route sorted by recorded timestamp.
Fixed:
Fixed background location tracking for time-based tracking mode when location permission is given as 'Allow while using'
Fixed:
Fixed the coordinates arrangement for Roam.getTripSummary()
on local trips.
Fixed:
Removed the blue bar that was being displayed during active tracking.
Modified:
Added an option in Roam.unSubscribe()
which will now unsubscribe all users if user_id
is passed as null or empty.
Added battery and network details as part of the location in the location receiver.
Fixed:
Issues in tracking location when the application is forced to terminate by the user. The SDK will now restart the tracking automatically.
Fixed:
Improved Roam.getCurrentLocation()
to return the location faster.
Fixed:
Location activity was getting updated as stationary for all location points during the terminated state.
Modified:
Custom tracking options will now work in the terminated state. (SDK will wait for a significant change in the device location to restart the tracking again in the background)
Added:
Support to listen to location updates of users from different projects which are in the same account.
Fixed:
Multiple location updates are recorded when the user is stationary while tracking.
Modified:
#28 Made startTrip
independent by combining it with startTracking
and createTrip
methods
Added:
metadata
support for users and trips were added
Modified:
#19 Allowed meta-data
support for updating location, i.e., updateCurrentLocation
method.
Removed:
#20 Combined startTracking
and startSelfTracking
methods.
Added:
#21 Updated location when a user becomes stationary.
Fixed #23 - Tracking stops working after new getUser()
or createUser()
session
#13 In order to support Apple Silicon M1 Macs, we added arm64 to iOS simulator builds.
#5 Added support for XCFrameworks
#4 Added support for Swift Package Manager
#11 Updated the docs to support the SPM integration steps
Updated dependency frameworks for XCFramworks to avoid build issues during manual integration.
Refactored the current framework to support dependencies from local XCFrameworks.
Added the total elevation gain parameter to the already existing elevation gain, distance, and duration parameters in the trip summary.
Added support new compiler version for Xcode 12.5.1 with Swift v5.4.2
Added:
isTripSync() Method
Fixed:
Fixed Location Id generation for Offline Trips
Modified:
Replaced AWSIOT with CocoaMQTT
The first version of Roam iOS SDK
This page describes the Roam authentication model, API endpoints, and error handling while using Roam APIs.
All URLs referenced in the API documentation will have the following base:
REST APIs are served over HTTPS. To ensure data privacy, Roam discourages using unencrypted HTTP requests.
Here are some popular use cases with Roam APIs:
Can be used to view and do much more with your user data.
Enables you to view user count per project.
Enables you to determine the device (iOS/Android) and application from which the hits are coming.
Can create, update, and delete Geofences, and trigger events on the fly
Use geofences to create virtual fences for your structural properties on maps.
Track your users as they enter and exit geofences.
Understand user behavior and usage, as well as visit patterns.
Provides Location APIs to track your users' movement and activities.
Know the users' location in real-time by just calling Roam APIs.
Trips APIs can be used to view your user trips and routes
Track the trip of the user.
Fetch path of the trips along with the routes, mode of transportation, stop points, and offline status.
Roam uses an API Key based authentication passed using a custom headerApi-Key
for the APIs taking into consideration the safety of your API secret keys. We provide APIs on a per-project basis so that the projects are independent of each other's APIs.
Once your application is integrated with the Roam SDK, an account for each user will be created using your app. Information about these users can be tracked through Roam APIs.
Here are the API endpoints available to interact with the user profile data:
Explore how to delete a trip on iOS with Trips v2.
You can delete the trip irrespective of any trip state. To delete the trip, you need to use the tripID with the Roam.deleteTrip("tripId")
method.
You can access the delete trip response parameters below:
response?.code
number
The success response code of the method.
response?.message
string
The success response message of the method.
response?.errorDescription
string
Error response description of the method.
response?.tripId
string
Unique identifier for trip objects.
response?.isDeleted
boolean
Boolean value to determine if the trip has been deleted.
Coming Soon. Request for beta access if you'd like to try it out.
Coming Soon. Request for beta access if you'd like to try it out.
Explore Roam's Trips documentation.
Trips allow you to manage broadly defined trips. Whether it's a taxi driver, food/parcel delivery, outdoor run, or anyone who needs to move from location A to B, Roam.ai location technology helps manage the process.
Trips use a combination of REST APIs and SDK Methods for the creation and management of trips. Trips can be tracked in real-time using our SDK listener methods, webhooks, and our tracking portal track.roam.ai.
Quick Trips lets you track journeys from point A to B in real-time using the startTrip
and endTrip
SDK methods.
Quick Trips are ideal for:
Fitness Tracking while on a run/ride.
Mileage tracking for employees, riders, etc.
Distance tracking for automobile rentals.
Micro mobility apps for short distance tracking.
Quick Trips Workflow
Planned trips lets you plan trips ahead of time where a user can visit a single location or stop at multiple locations as part of the journey from point A to B to C to N. Start by creating a trip using createTrip
including stop_locations
where you can specify this location using coordinates of locations.
The best use cases for planned trips are:
Ridesharing and hailing
Food and Grocery delivery
Last-mile delivery
Logistics
Planned Trips Workflow
Trips require you to use a combination of SDK Methods and APIs to achieve real-time tracking features.
Interaction with the Trip SDK Methods may require you to use user_id
or trip_id
while calling the methods.
Roam.createTrip
Allows you to create a Planned trip with stop_locations
Roam.updateTrip
Allows you to update a trip with user_id
, stop_locations
and more.
Roam.startTrip
Allows you to start a "Quick Trip" or a "Planned Trip" with pre-defined stop_locations
.
Roam.endTrip
Allows you to end a Trip.
Roam.pauseTrip
Allows you to pause a Trip.
Roam.ResumeTrip
Allows you to resume a Trip.
Roam.syncTrip
Allows you to sync an offline Trip.
Roam.getTrip
Allows you to get the trip details using the trip_id
.
Roam.getActiveTrips
Allows you to get a list of active trips for a specific user_id
.
Roam.getTripSummary
Allows you to get a trip summary which includes the trip route, time taken, distance covered, and more.
Roam.subscribeTripStatus
Allows you to subscribe to the real-time status of any ongoing trip.
Roam.deleteTrip
Allows you delete any trip.
The Roam API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Authentication
The Roam API uses API keys to authenticate requests. You can view and manage your API keys in the Roam Dashboard.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via a custom header Api-Key
. Provide your API key as the value for the header Api-Key
All API requests must be made over HTTPS. Calls made over plain HTTP and API requests without authentication will fail.
Create Trip
Allows you to create a Planned trip with or without origins and destinations.
Get Trip
Allows you to get the trip details using the trip_id
.
Get Multiple Trips
Allows you to get multiple trips.
Update Trip
Allows you to update a trip with user_id
, stop_locations
and more.
Control Trips
Allows you to control a trip like start, end, pause and resume.
Trip Summary
Allows you to get a trip summary which includes the trip route, time taken, distance covered, and more.
Export Trip
Allows you to get a trip summary which includes the trip route, time taken, distance covered, and more.
Delete Trip
Allows you to delete any trip
Trip Object
id
Unique identification of the trip object.
name
Name of the trip.
description
The trip's description.
metadata
A set of key-value pairs that you can attach to the trip object.
trip_state
The current state of the trip.
States: Created
, Started
, or Ended
.
total_distance
Total distance covered by the user for this trip.
total_duration
Total duration taken by the user for this trip
toal_elevation_gain
Total positive elevation gain covered by the user for this trip.
started_at
Timestamp of when the trip started.
ended_at
Timestamp of when the trip ended.
created_at
Timestamp of when the trip was created.
updated_at
Timestamp of when the trip was last updated.
user
List of user objects.
events
List of event objects.
stops
List of stop objects.
User Object
id
Unique identification of the user object.
name
User name
description
User Description
metadata
A set of key-value pairs that you can attach to the user object.
Event Object
id
Unique identifier of the event Object
trip_id
ID associated with the trip.
user_id
User associated with the event.
event_type
Type of trip event: created, started, or ended.
created_at
Timestamp of when the event was created.
event_source
The source of this event, for example: "Trip"
event_version
Version of the event.
Stop Object
id
Unique identifier for the Stop Object
name
The name of the stop.
description
Stop description.
metadata
A Set of key-value pairs that you can attach to the user object.
geometry_radius
The geofence radius of the stop.
geometry
The coordinates of the stop geofence in geoJSON format.
arrived_at
Timestamp of when the user arrived/entered the stop.
departed_at
Timestamp of when the user departed/exited the stop.
created_at
Timestamp of when the stop was created.
updated_at
Timestamp of when the stop was updated.
The end-user can initiate different actions depending on the requirement. This is facilitated by the Roam SDK.
For example, when the end-user clicks on the Start Tracking icon on the frontend, the client-side requests to start tracking the user's location.
To use our Roam SDK on the server-side, the SDK object is instantiated using a private API key. The client request is made using the API which connects to the web server and retrieves the necessary data.
As the name suggests, a Quick Trip creates and starts the trip immediately. The user need not define the locations of travel and can track their journey from point A to point B using the startTrip
and endTrip
SDK methods on their application.
Refer to the following sections to instantiate the Start Quick Trip method on iOS and Android.
Update Trip allows you to update the name, description and the stop locations for a trip.
Consider a scenario where a trip is created with stop locations A, B, and C. If you wish to update the trip with a new stop location D, all the previously created stops need to be passed along with the co ordinates for point D.
If you wish to delete a stop location, you can do so by omitting the co ordinates for that point while updating the trip. However, you can only do so as long as the user has not reached that stop location.
Refer to the following sections for the Update Trip API and SDK methods.
The Create Trip API, specifically used for planned trips, allows you to create new trips with start and stop locations. You can define the geometry radius for these locations which will help capture the entry and exit events.
To instantiate the Create Trip SDK, refer to the following section.
The following section consists of a sample request along with the responses for the Create Trip API.
Once the trip is created, the users can perform various actions to control it. The following sections consist of information on how to integrate the SDKs on iOS and Android devices and the APIs.
The Start Trip method allows you to start a Quick Trip or a planned trip with pre-defined stop locations.
To instantiate the Start Trip SDK method on Android and iOS, refer to the following sections.
The Start Trip API starts the trip for the specified Trip ID.
The End Trip method is used to end an ongoing trip. The ended trip could be previously started, paused, and/or resumed.
Refer to the following section for information on how to instantiate the End Trip SDK on Android and iOS.
The End Trip API is used to end the trip for the given ID.
The Pause Trip method allows the user to pause a previously created trip.
To instantiate the Pause Trip SDK on Android and iOS, refer to the following sections:
Pause Trip API pauses the trip for the given ID.
The Resume Trip method is used to resume a previously paused trip.
The following section gives information on the Resume Trip SDK method for Android and iOS.
Resume trip API resumes the trip for the given Trip ID.
The Sync Trip method syncs an offline trip (with locally stored data) to the servers.
The section below shows the code to instantiate the Sync Trip method on Android and iOS.
The Get Trips API fetches the trip details for the given Trip ID. The information will include the Trip ID, name, description, state, stop locations, entry and exit timestamps at the stop locations and so on.
As the name suggests, Get Single Trip is used to fetch details for a single Trip ID. Refer to the following sections to instantiate the Get Single Trip SDK method on iOS and Android.
Get Single Trip API fetches the trip details for the provided Trip ID.
Get Multiple Trips API will fetch multiple trip details. You can use different parameters to filter out the data to be fetched. For detailed information, refer to the section below.
A trip is active when it is started and not yet ended. The Get Active Trips method returns all the trips that have been started by the user.
Below are the Get Active Trips methods for Android and iOS.
This method helps get the Trip Summary for the specified trip ID. To instantiate the Get Trip Summary method, refer the following section.
The Get Trip Summary API gives information about the entire trip with the start locations, end location stops, events, routes taken, etc.
Refer to the following section for detailed information about the API.
The Subscribe Trip method helps get real-time location data for trips. This method provides location data for both online and offline trips.
For more information on the Subscribe Trip method, refer to the following section.
To subscribe to trip events about end users, you configure Webhooks for your applications. A Webhook registers the notification URL that Roam sends notifications to.
To use the Developer Dashboard to subscribe to event notifications, refer to the following section.
There are several backend libraries you can subscribe to to receive user trips event data. We provide three libraries for location and events subscription.
For detailed information on how to integrate our JavaScript, Go and Python libraries, refer to the following sections.
The Export trip API call consolidates the trip summary in a readable format and exports the data to your system.
The different formats supported by Roam are csv, gpx, json and geojson. Refer to the following section for the API.
The Delete Trip method deletes the trip regardless of its state.
To instantiate the Delete Trip method on Android and iOS, refer the following section.
The Delete Trip API makes a soft delete of the trip for the given trip ID.
The following are some of the commonly found codes indicating client errors.
400
invalid_request_error
The request was unacceptable due to a missing parameter or an invalid parameter.
401
invalid_api_key
No valid API key provided or API key is missing.
402
account_error
The parameters were valid but the request failed due to either a payment error or the organization disabled it or you have exceeded your usage.
404
object_not_found
The requested object does not exist or has already been deleted.
429
rate_limit_exceeded
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
Now that you know how to instantiate our SDK methods and how the APIs function, you can create, start and control the trips using the same. You can publish location updates and also subscribe to the trip using our Roam SDK. To receive real-time location updates, we have made a provision to subscribe to Webhooks and Backend libraries. However, you can also track the trip using our Roam Tracking Dashboard.
The Roam Tracking dashboard is a fully responsive, platform compatible, and an easy-to-use interface that helps track the end-user location during a trip.
You can either provide the UserID or the TripID to start tracking. You can also create a new user with an existing API Key.
The Tracking dashboard shows the following:
The number of stops in the created trip.
The total distance traveled from the start to the end location.
The duration taken to travel the distance.
The arrival and departure timestamps for the entry and exit events at each stop location.
ID of the end-user who traversed the distance.
In the above example, we have created a trip with three stop locations. Once the trip is created and started, the stop locations are visible on the tracking dashboard in yellow.
Check out the video below for a short demo of the tracking dashboard.
Once the trip is ended, you can see the start point indicated in green, stop locations in yellow, and the endpoint in red.
Explore Roam's Geofencing documentation.
Geofence is a virtual perimeter for a real-world geographical area. A geofence can be dynamically generated around a location point with a radius (circle geofence) or with a pre-defined set of boundaries (polygon geofence) for stores, neighborhoods, or even cities.
Every time the end user enters or exits a geofence with a location aware device, events are generated. These events can be used to alert the user or perform actions in the backend.
The Roam API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Roam API uses API keys to authenticate requests. You can view and manage your API keys in the Roam Dashboard.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Authentication to the API is performed via a custom header Api-Key
. Provide your API key as the value for the header Api-Key
Geofences can be created using the Roam API. They can be created over a circle or a polygon geometry. By default, a geofence is applicable to all the users of a project but can also be restricted to a group of users. Geofences can be configured to be enabled for a specified time interval.
Roam allows you to create two geofence geometry types:
Circle
Polygon
A circular geofence is the region around a location point defined by a radius. To create a circular geofence, the required body parameters are coordinates
, and geometry_radius
.
Sample Request // Circle Geofence
Sample Response // Circle Geofence
A polygon geofence is the area defined by a set of boundaries forming any shape around a location area. To create a polygon geofence, the required body parameters are geometry_type
andcoordinates
.
Same Request to create a Polygon geofence
Sample Response
You can monitor geofence events for a specific user or a list of users by passing user_ids
which are generated at the time of creating a user. In the case of a user group, you may pass the group_id. If by default, user_ids
and group_ids
are not specified, then the geofence is activated for all the users of the project.
Pass a user_id
under the "user_ids"
body parameter. Pass an array ofuser_ids
to create a geofence specific to multiple users.
Sample Request for single User ID
Sample Request for multiple User IDs
Pass a group_id
under the "group_ids"
body parameter. You may pass multiple group IDs into an array to create a geofence specific to those groups.
Sample Request for single Group ID
Sample Request for multiple Group ID
You can create time aware geofences to trigger events between a specific time range. You can do so by passing the date and time as the second and third elements of the array to theis_enabled
field in the body section.
During the specified time interval, the entry and exit events will be triggered. However, outside the time interval, you need to ensure that the"is_enabled"
field is set to "false".
Sample Response
Adding a description
and metadata
can help identify and personalize the geofences while displaying them on a map. You can add this information while creating a geofence or updating a geofence.
Sample Request
Sample Response
Adding tag
can help filter geofences easily. This field is optional. When a geofence event is generated, the tag
is also sent along with the event.
color_code
defines the color of the geofence and how it is displayed on the dashboard. Hex Code for CSS colors should be passed in this field without '#
'.
Sample Request
Sample Response
Geofence can be updated using PUT
API request along with the geofence endpoint.
The following are the values that can be updated once after the Geofence is created.
Parameters
Type
group_ids
array
user_ids
array
metadata
object
color_code
string
tag
string
description
string
is_enabled
array
The values that cannot be updated once the geofence is created are:
Parameters
Type
coordinates
array
geometry_type
string
geometry_radius
integer
This API gives you a filtered list of geofences. You can filter by geofence_id
, created_at, start_date
and end_date
fields, user_id
and group_id.
Sample Request
This filter allows you to filter the geofences within the given date range. These are non-mandatory fields and will be set to the current date by default.
You may also pass either the start_date
or the end_date
as filters. If you pass a specific start date, make sure it is less than the current date since the end date will be set default to the current date. If you pass a specific end_date
and leave the start_date
empty, make sure it is greater than the current date.
Below are the acceptable formats for the date filter:
Parameter
Mandatory
Format
Default
start_date
No
YYYY-MM-DD
Current date
end_date
No
YYYY-MM-DD
Current date
You can also use geofence_id
as a filter. If you pass a valid geofence_id
, the results will be filtered to the given geofence id.
You can get the geofence_id
when you create a geofence using the Create Geofence API.
Make sure the geofence_id
used here belongs to the same project linked to the API key.
Similar to the geofence_id
, you can fetch the list of geofences that are tagged with the given user_id
, which was initially used during the Create Geofence API. The user_id
is created within the SDK during thecreateUser
method and returns a unique user_id
for identification within the Roam environment.
If you use theuser_id
as a filter along with the date filter, the date filters will not be considered. And if you pass an empty or invalid user_id
, the API will return an error.
Make sure the user_id
used here belongs to the same project linked with the API key.
To fetch the list of geofences that are tagged with the given group_id
, which was initially used during the Create Geofence API, you can pass the group_id
in the header parameter.
You can get the group_id
when you create a group using the Create Group API.
If you use group_id
as a filter along with the date filter, the date filters will not be considered. Passing an empty or invalid group_id
, will return an error.
Make sure the group_id
used here belongs to the same project linked with the API key.
Roam's geofence feature has 2 possible events that can be triggered based on user behavior:
Geofence Entry Event - triggered when a user enters the defined geofence area
Geofence Exit Event - triggered when a user exits from the defined geofence area
Sample Events:
Geofence Entry Event:
Geofence Exit Event:
To enable geofence events for a user, you’ll need to ensure the following:
Under Roam.toggleEvents
the geofence
flag must be set to true
,and
Ensure you’re publishing location to the server.
Toggle Events docs Links: iOS | Android | React Native | Using API
Publish Locations docs links: iOS | Android | React Native
If the geofence flag is false for a user and location is not being published, then geofence events will not be processed for their location updates.
Roam supports the posting of events to webhooks in real-time. To enable posting events via webhook, first the webhook URL needs to be configured in the project using the dashboard (Project Settings -> integration) and should be enabled.
Geofence events can be retrieved using the Roam API. The Get Events API lets you fetch entry or exit events of the users from your event-enabled geofences. The API also lets you filter by user, geofence, location, and more.
Delete any existing geofences from your projects by using the geofence_id.
You can delete the geofence with the delete API using the following two options:
Option 1: Delete geofence individually
You can delete one geofence at a time by passing the geofence ID as a query parameter.
Option 2: Delete geofences in bulk
By passing multiple geofence_ids as a body parameter, you can delete up to 200 geofences at a time.
Method
Status
Message
Reason
GET
400
"Error": [ "start_date provided is greater than end_date." ]
Invalid date filter
GET
400
"geofence_id": { "geofence_id": "This field is invalid." }
Invalid geofence id
GET
400
"Error": [ "Geofence does not exist." ]
Geofence does not exist
GET
400
"Error": [ "You are not authorized." ]
Invalid API key
GET
400
"Error": [ "Maximum 7 days data is allowed at a time." ]
Date filter greater than the limit of 7 days
GET
400
"ErrorMessage": "An error occurred"
Unknown server error
POST
400
"coordinates": [ "Invalid coordinates for given geometry type" ]
Invalid geofence geometry coordinates
POST
400
"enable_at": [ "DateTime has wrong format. Provide as YYYY-MM-DDThh:mm:ss" ]
Invalid date time format
POST
400
"non_field_errors": [ "enable_at provided is greater than disable_at." ]
Invalid enable_at value
POST
400
"non_field_errors": [ "disable_at field is required when enable_at field is present." ]
Empty disable_at value
POST
400
"non_field_errors": [ "enable_at field is required when disable_at field is present." ]
Empty enable_at value
POST
400
"Invalid is_enabled format. Allowed format: [bool, enable_at, disable_at]"
Invalid is_enabled format
POST
400
"coordinates": [ "Coordinates must be sent in a list" ]
Invalid coordinates
POST
400
"geometry_radius": [ "This field is required." ]
Empty geometry radius
POST
400
"tag": { "tag": "This field is invalid." }
Invalid tag
PUT
400
"geofence_id": { "geofence_id": "This field is invalid." }
Invalid geofence id
DELETE
400
"details": "This geofence is part of an active campaign."
Geofence cannot be deleted since it is part of an active campaign
DELETE
400
"geofence_id": { "geofence_id": "This field is invalid." }
Invalid geofence id
Insights APIs are on demand for our enterprise customers. In case you want us to process your location data to know your users Home, Work and POIs, please reach out to our customer support.
Explore the documentation for Roam's Locations API.
Explore the documentation for Roam's Users API.
Api-key*
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
app_type*
number
Either 1 or 2 where 1 is for Android and 2 is for iOS
device_token*
string
Device token (can be dummy value initially), the same will be updated once the user is logged in from an actual device.
description
string
The description of the user.
metadata
array
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
user_id
string
Get Home location for the user. E.g.- 5d9450ace47bae6d70064a9b
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
user_id
string
user_id for which the locations have to be returned. E.g.- 5d9450ace47bae6d70064a9b
start_date
string
Date from when the location is to be fetched. E.g.- 2021-05-31T18:48:52
end_date
string
Date till when the location is to be returned. E.g.- 2021-05-31T18:48:58
timezone_offset
string
If the timezone is provided the response will be returned as the provided local timezone.
If the timezone is not provided, the response will be returned in UTC.
If points_encoded value istrue
, then this value will be UTC by default.
E.g.- Asia/Kolkata
page_number
integer
This field is used for getting 10 entries at a time.
If the response returns an empty list in the data field, the pages are exhausted.
If points_encoded value istrue
, then this value will not be considered.
E.g.- 1
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
user_id
string
Get Work location for the user. E.g.- 5d9450ace47bae6d70064a9b
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
This API will provide a list of insights with boundary coordinates of the location, last visit details, type and confidence for POIs frequently visited by the user.
This API helps you to export trip data in the .gpx format.
GET
https://api.roam.ai/v1/api/trips/export/
trip_id
string
trip_id required to export its data in gpx format. E.g.- 5fdc5470203bda0000abacc0
type
string
format to be given in which data need to be exported. E.g.- gpx
Api-key
string
Auth-key E.g.- 083591a3392c483e838f66ac788126eb
The Create Trip API helps you to create a new trip with an origin, destination, and user.
POST
https://api.roam.ai/v1/api/trips/
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
user_id
string
User-id for which the trip needs to be assigned E.g.- 5d9450ace47bae6d70064a9b
origins
array
Single or multiple origin locations in [long, lat] format. E.g.- [[77.677270, 12.914131]]
destinations
array
Single or multiple destination locations in [long, lat] format. E.g.- [[77.700475, 12.957005]]
This API lets you update the details of a user.
PUT
https://api.roam.ai/v1/api/user/
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
user_id
string
Enable or disable events data for the given user_id. E.g.- 5d9450ace47bae6d70064a9b
description
string
Update user description. E.g.- “test user”
geofence_events
boolean
Enable or disable geofence_events. E.g.- true
trips_events
boolean
Enable or disable trips_events. E.g.- true
location_events
boolean
Enable or disable location_events. E.g.- true
nearby_events
boolean
Enable or disable nearby_events. E.g.- true
event_listener
boolean
Enable or disable event_listener. E.g.- true
location_listener
boolean
Enable or disable location_listener. E.g.- true
Explore Roam's Trips v1 API documentation.
user_id
string
Used to get the list of trips assigned to the given user_id. E.g.- 5d9450ace47bae6d70064a9b
start_date
string
Date from when trips need to be returned. E.g.- 2020-08-15
end_date
string
Date till when the trip list needs to be returned. E.g.- 2020-08-20
trip_id
string
Used to get one particular trip. E.g.- 5f7d9926e5fc233610297c76
page_number
integer
Used to traverse through pages of data. E.g.- 1
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
trip_id
string
Trip_id of the trip. E.g.- 5cd0299d77aebe2d78758d32
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
The Get User API provides a list of users who are using your app corresponding to the project secret API key provided.
GET
https://api.roam.ai/v1/api/user/
user_id
string
Used to get the details of one particular user. Note: This query param cannot be used along with any other.
timezone_offset
string
If the timezone is provided the query will be made as per the given timezone. E.g.- Asia/Kolkata
start_date
string
Date from when the data is to be returned. E.g.- 2020-09-10
end_date
string
Date till when the data is to be returned. E.g.- 2020-09-13
page_number
integer
This field is used for getting 10 entries at a time. If the response returns an empty list in the data field, it is safe to assume the pages are exhausted.
If points_encoded value is true
, this value will not be considered.
E.g.- 1
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
Explore Roam's Trip v2 API documentation
This API allows you to update the origin, destination or user_id for a given trip_id before starting the trip.
PUT
https://api.roam.ai/v1/api/trips/
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
user_id
string
user_id to which the trip is to be reassigned E.g.- 5d9450ace47bae6d70064a9q
trip_id
string
Trip id which needs to be modified. E.g.- 5d9450ace47bae6d70064a9b
origins
array
Origin location in [long, lat] format. E.g.- [[77.677270, 12.914131]]
destinations
array
Destination location in [long, lat] format. E.g.- [[77.700475, 12.957005]]
This API helps you to delete an existing trip.
Authorization*
String
Bearer <API-KEY>
user_id
String
The user for which the trip is being tracked.
description
String
Description of the trip. By default the id is shown if the description is not set.
name
String
Name of the trip. By default the id is shown if the name is not set.
metadata
Dictionary
Set of key-value pairs that you can attach to the trip. This can be useful for storing additional information about the trip in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.
stops
Array
For the trips with stop locations, add an array of stop locations.
stops.metadata
Dictionary
Set of key-value pairs that you can attach to the stop location. This can be useful for storing additional information about the stop location in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.
stops.name
String
Name of the stop location. By default the id is shown if the name is not set.
stops.description
String
Description of the stop location. By default the id is shown if the description is not set.
stops.address
String
Address of the stop location.
stops.geometry_radius
Number
The radius in meters.
stops.geometry
Point
Location coordinates in GeoJSON format.
Explore how to end a trip with our Trip API
POST
https://api.roam.ai/v2/trips/:id/controls
Ends the trip for the given id.
id*
String
Controls the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id*
String
The user for which the trip is being tracked.
ended_at*
String
Timestamp is UTC for action:resume eg: 2022-01-14T09:10:59.125
action*
String
To control the trip.
eg. start, pause, resume, end
Explore how to resume a trip with our Trip API
POST
https://api.roam.ai/v2/trips/:id/controls
Resumes the trip for the given id.
id*
String
Controls the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id*
String
The user for which the trip is being tracked.
resumed_at*
String
Timestamp is UTC for action:resume eg: 2022-01-14T09:10:59.125
action*
String
To control the trip.
eg. start, pause, resume, end
Explore how to control a trip with our Trip API
POST
https://api.roam.ai/v2/trips/:id/controls
Starts/Pauses/Resumes/Stops the trip for the given id.
id*
String
Updates the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id*
String
The user for which the trip is being tracked.
started_at*
String
Timestamp is UTC for action:start eg: 2022-01-14T09:10:59.125
action*
String
To control the trip.
eg. start, pause, resume, end
paused_at*
String
Timestamp is UTC for action:pause eg: 2022-01-14T09:10:59.125
resumed_at*
String
Timestamp is UTC for action:resume eg: 2022-01-14T09:10:59.125
ended_at*
String
Timestamp is UTC for action:end eg: 2022-01-14T09:10:59.125
Explore how to pause a trip with our Trip API
POST
https://api.roam.ai/v2/trips/:id/controls
Pauses the trip for the given id.
id*
String
Controls the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id*
String
The user for which the trip is being tracked.
paused_at*
String
Timestamp is UTC for action:pause eg: 2022-01-14T09:10:59.125
action*
String
To control the trip.
eg. start, pause, resume, end
Explore how to delete a trip with our Trip API
DELETE
https://api.roam.ai/v2/trips/:id
You can delete the trip via this API. Deleting a trip does not affect any users who have already completed the trip; however the user can't start a previously created trip if it is deleted.
id*
String
Exports the trip summary with the given ID.
Authorization*
String
Bearer <API-KEY>
Explore how to get multiple trips with our Trip API
GET
https://api.roam.ai/v2/trips
Returns a list of your trips.
starting_after
String
A cursor for use in pagination. starting_after is a trip id that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include starting_after=obj_foo in order to fetch the next page of the list.
ending_before
String
A cursor for use in pagination. ending_before is a trip id that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include ending_before=obj_bar in order to fetch the previous page of the list.
created_at
Condition
A filter on the list based on the object created_at field.
description
Condition
A filter on the list based on the object description field.
trip_state
Condition
A filter on the list based on the object trip_status field.
is_local
Condition
A filter on the list based on the object is_local field.
user_id
Conditon
A filter on the list based on the object user_id field.
limit
Number
A limit on the number of objects to be returned, between 1 and 100.
Authorization*
String
Bearer <API-KEY>
The following logical operators are generally supported for filters.
Equality operators
Equals eq
Not equals ne
Negation not
In in
Relational operators
Less than lt
Greater than gt
Less than or equal to le
Greater than or equal to ge
Conditional operators
And and
Or or
Functions
Starts with startsWith
Ends with endsWith
Contains contains
Like like
Explore the documentation for our Geofencing API
Explore how to update a trip with our Trip API
PUT
https://api.roam.ai/v2/trips/:id
Updates the metadata, description and name of a trip. Details of existing stop locations like metadata, description, name and address can be updated except geometry_radius and geometry by passing stop location id. To add new stop location, add new stop location item to array without id. To remove the existing stop location, remove the entire item in the array which will remove the stop location only if it is not entered/existed by the assigned user.
You cannot update the user once the trip is started.
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
group_ids
array
Enables geofence for the list of users. If group_ids and user_ids are empty then geofence is enabled for all users of the project. E.g.- ["group1","group2"]
user_ids
array
Enables geofence for the list of users. If group_ids and user_ids are empty then geofence is enabled for all users of the project. E.g.-["user1","user2"]
coordinates
array
Mandatory for creating the geofence. E.g.- [ -72.28122, 42.926042 ]
metadata
object
An optional set of custom key-value pairs for the geofence.
geometry_type
string
Defines the type of geometry. E.g.- circle
geometry_radius
integer
Defines the radius of circular geofence in meters. Range 50m to 1000m. (Required only for geometry_type circle. Field value ignored if sent when geometry_type is a polygon.) E.g.- 50m to 1000m max
color_code
string
Defines the color of Geofence and how it is displayed on the dashboard. Type: Hex Code for CSS colors. Note: Pass the code without '#'. E.g.- ffffff
tag
string
Tag the Geofences for future reference and filtering. E.g.- hotel
description
string
Optional description for the geofence. E.g.- This is just a 5 star cool hotel where you can stay.
is_enabled
array
Array with first index depicting whether the geofence is enabled or disabled, second index depicting the start_time and last index depicting the end_time between which the geofence should be active. E.g.- [true,"2021-06-10T20:45:44", "2021-06-15T22:45:33"]
id*
String
Retrieves the trip summary with the given ID.
Authorization*
String
Bearer <API-KEY>
id*
String
Exports the trip summary with the given ID.
format*
String
Export type as csv/gpx/json/geojson
eg: gpx
Authorization*
String
Bearer <API-KEY>
id*
String
Controls the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id*
String
The user for which the trip is being tracked.
started_at*
String
Timestamp is UTC for action:start eg: 2022-01-14T09:10:59.125
action*
String
To control the trip.
eg. start, pause, resume, end
id*
String
Updates the trip with the given ID.
Authorization*
String
Bearer <API-KEY>
user_id
String
The user for which the trip is being tracked.
description
String
Description of the trip. By default the id is shown if the description is not set.
name
String
Name of the trip. By default the id is shown if the name is not set.
metadata
Dictionary
Set of key-value pairs that you can attach to the trip. This can be useful for storing additional information about the trip in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.
stops
Array
For the trips with stop locations, add an array of stop locations.
stops.metadata
Dictionary
Set of key-value pairs that you can attach to the stop location. This can be useful for storing additional information about the stop location in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.
stops.name
String
Name of the stop location. By default the id is shown if the name is not set.
stops.description
String
Description of the stop location. By default the id is shown if the description is not set.
stops.address
String
Address of the stop location.
stops.geometry_radius
Number
The radius in meters.
stops.geometry
Point
Location coordinates in GeoJSON format.
The Get Events API lets you fetch the entry or exit events of the users from your event enabled geofences. The API also lets you filter by user or geofence, location, and more.
GET
https://api.roam.ai/v1/api/event/
user_id
string
Filters events data for the given user_id. E.g.- 5d9450ace47bae6d70064a9b
geofence_id
string
Filters events data for the given geofence_id. E.g.- 5eecc7491e621663c93ba2fe
start_date
string
Filters events data for the given date range. E.g.- 2020-08-05
end_date
string
Filters events data for the given date range. E.g.- 2020-08-09
page_number
integer
This field can be used for getting 10 entries at a time. if the response returns an empty list in the data field, it is safe to assume the pages are exhausted. If the points_encoded value is true, then this value will not be considered. E.g.- 1
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
This API gives you the filtered list of geofences.
GET
https://api.roam.ai/v1/api/geofence/
user_id
string
Filter the geofence which is enabled for this user_id E.g.- 6073325bcf3e4eba5a1123a
group_id
string
Filter the geofences which is enabled for this group_id E.g.- 6073325bc3fe343ab6c1324b
page_number
integer
This field can be used for getting 10 entries at a time. If the response returns an empty list in the data field, it is safe to assume the pages are exhausted. E.g.-1
start_date
string
Date from when the geofences created to be fetched. E.g.- 2020-09-28
end_date
string
Date till when the data need to be returned. E.g.- 2020-09-29
geofence_id
string
Get the details of one geofence. E.g.- 5f73326ce5fc231ba4b253eb
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
Use this API to update details for an existing geofence of any specific project.
PUT
https://api.roam.ai/v1/api/geofence/
Api-key
string
Auth-key E.g.- 33223kjhdcscijhb5sdbsdmjsdcbj5f
geofence_id
string
geofence_id which needs to be updated E.g.- 6dba14deda01857c3c418265
group_ids
array
Enables geofence for the list of users. If group_ids and user_ids are empty then geofence is enabled for all users of the project. E.g.- ["group1","group2"]
user_ids
array
Enables geofence for the list of users. If group_ids and user_ids are empty then geofence is enabled for all users of the project. E.g.-["user1","user2"]
coordinates
array
Mandatory for creating the geofence. E.g.- [ -72.28122, 42.926042 ]
metadata
object
An optional set of custom key-value pairs for the geofence.
geometry_type
string
Defines the type of geometry. E.g.- circle
geometry_radius
integer
Defines the radius of circular geofence in meters. Range 50m to 1000m. (Required only for geometry_type circle. Field value ignored if sent when geometry_type is a polygon.) E.g.- 50m to 1000m max
color_code
string
Defines the color of Geofence and how it is displayed on the dashboard. Type: Hex Code for CSS colors. Note: Pass the code without '#'. E.g.- ffffff
tag
string
Tag the Geofences for future reference and filtering. E.g.- hotel
description
string
Optional description for the geofence. E.g.- This is just a 5 star cool hotel where you can stay.
is_enabled
array
Array with first index depicting whether the geofence is enabled or disabled, second index depicting the start_time and last index depicting the end_time between which the geofence should be active. E.g.- [true,"2021-06-10T20:45:44", "2021-06-15T22:45:33"]
Events APIs are used to fetch the list of events generated by the users with ability to filter the results based on various parameters.
Delete Geofence API allows you to delete already existing geofences for a project.
You can delete the geofence by two options below:
Query Parameters: This can accept only one geofence_id which can be deleted.
Body Parameters: If you want to delete more than one geofence, you can use the body parameters with upto 200 geofence_id at a time.
DELETE
https://api.roam.ai/v1/api/geofence
geofence_id
string
Delete geofence for this id. E.g.- 5f73326ce5fc231ba4b253eb
Api-key
string
Auth-key E.g.-33223kjhdcscijhb5sdbsdmjsdcbj5f
geofence_id
array
Array of geofence_id to be deleted.
E.g- ["5f73326ce5fc231ba4b253eb", "5f73326ce5fc231ba4b2534f"]
Single Delete
Bulk Delete