-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Device Coordinates #123
Comments
I've found this |
Nevermind I guess the best way is to attain the log record for the serial number. Okay sorry. Thank you. Does the log record for a device contain the most up to date GPS coordinates? |
val logResponse = api.call(logRequest, LogRecordListResponse::class.java)
logResponse.get().forEach {
println(it.latitude)
println(it.longitude)
}
|
I've executed an authenticated request to get a list of devices in the database. Now, I need to get the coordinates. The API documentation says that I can attain the real-time coordinates by performing a search using each device's serial number. However, I am unable to find any example and/or instructions on how to do so. I've been looking at your source code. The thing is that there is no information provided to the developer when programming with your api in the IDE. What class do I use to perform this search. Am I still supposed to use a search parameters builder?
The text was updated successfully, but these errors were encountered: