diff --git a/Main/Program.cs b/Main/Program.cs index e8dee9976b1b8f732fe85e6cc05fe57c8da627a5..c59d34931c07a7bad1e536cedd0220d928b21f77 100644 --- a/Main/Program.cs +++ b/Main/Program.cs @@ -1,4 +1,4 @@ -using SDK; +using SDK; using SDK.Communication; using SDK.Models; using System; @@ -28,7 +28,7 @@ namespace Main // Define connection options with specific credentials and client identifiers ConnectionOptionsBuilder optionsBuilder = new ConnectionOptionsBuilder(); ConnectionOptions connectionOptions = optionsBuilder - .Url("https://twin.rtls.solutions/api/") + .Url("https://api.platform.twinzo.eu/") .Client(ClientName) .ClientGuid(ClientGuid) .BranchGuid(BranchGuid) diff --git a/README.md b/README.md index f6b7a86e41813fd13136a18a5c73c76b5e0aeb23..4f64a2a4936095678a5878c688be6d879682d38f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The first thing you need to do is create the base object by which the functional ```c# ConnectionOptionsBuilder optionsBuilder = new ConnectionOptionsBuilder(); ConnectionOptions connectionOptions = optionsBuilder - .Url("https://twin.rtls.solutions/api") + .Url("https://api.platform.twinzo.eu/") .Client("YourClient") .BranchGuid("YourBranchGuid") .Timeout(1000) @@ -32,6 +32,8 @@ ConnectionOptions connectionOptions = optionsBuilder DevkitConnectorV3 devkitConnector = (DevkitConnectorV3) DevkitFactory.CreateDevkitConnector(connectionOptions); ``` +You can find api links at: https://twinzo.atlassian.net/wiki/spaces/PUBD/pages/72712207/Basics. + Through the `DevkitConnectorV3` object are accessible all the functions implemented in tDevkit. As of **V3**, Most of the functionality is ready to be used after specifying the Api Key in `ConnectionOptions` object. However, there is a small number of functions you need to be authenticated for due to their nature. These functions are mentioned in the [Full list of functions](#full-list-of-functions) section. diff --git a/SDK/SDK.csproj b/SDK/SDK.csproj index 938600db12e0672a1e7ea1fc9e91dcae80214b71..fa42813f19aef57e609a11ff87a9d1e23f443829 100644 --- a/SDK/SDK.csproj +++ b/SDK/SDK.csproj @@ -5,7 +5,7 @@ <TargetFramework>net8.0</TargetFramework> <AssemblyVersion>2021.6.28.25</AssemblyVersion> <FileVersion>2021.6.28.25</FileVersion> - <Version>4.10.2</Version> + <Version>4.10.3</Version> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> </PropertyGroup>