TeltonikaRMSAPI for C# .NET, easily consume Teltonika's RMS Service in your code.
Import package into you project by executing the following command
dotnet add PROJECT package TeltonikaRMSAPI --version 1.0.0
- Initialize the libary with
var client = new TeltonikaRMSAPI.Devices();
- Get your token (which you can get from Teltonika's RMS Site)
- Initialize your token in the
client
withclient.token = "your token";
- Make use of the services within
client
All methods can be consumed as async.
Gideon van de Laar