FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
791 views 1 comments
by
Is it possible to use a JSON RPC call to request the GPS location of the RUT850? Can you give an example of such a call

1 Answer

+1 vote
by

Hi,

Try following for latitude:

{
            "command":"gpsctl",
            "params":
            [
                "-i"
            ]
        }
For longitude:
    {
            "command":"gpsctl",
            "params":
            [
                "-x"
            ]
        }
 More info: https://wiki.teltonika.lt/view/Monitoring_via_JSON-RPC
Best answer
by
Works like a charm! Thanks for the quick follow up!