From 91e141f4ca65ccd41955eb8152b283c2b8441459 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michal=20Ondreji=C4=8Dka?= <ondrejickam@infotech.sk>
Date: Mon, 30 Aug 2021 09:26:42 +0000
Subject: [PATCH] Update README.md

---
 README.md | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/README.md b/README.md
index d7b74c8..7bd00f7 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,23 @@ Rest json/protobuf API for registered twinzo clients and partners provides fully
 
 [API Endpoint](https://twin.rtls.solutions/api/swagger/ui/index#/) for each digital twin module uses same authorization methods to provide all system unification into single instance - twinzo.
 
+## Documentation & Examples (V3)
+
+### Initialization
+
+The first thing you need to do is create the base object by which the functionality is accessible:
+
+ConnectionOptionsBuilder ConnectionOptionsBuilder = new ConnectionOptionsBuilder();
+ConnectionOptions connectionOptions = optionsBuilder
+    .Url("https://twin.rtls.solutions/api")
+    .Client("YourClient")
+    .BranchGuid("YourBranchGuid")
+    .Timeout(1000)
+    .ApiKey("YourApiKey")
+    .Version(ConnectionOptions.VERSION_3)
+    .Build();
+ 
+aw d
 ## Future features
 - **protobuffers** serialization
 - automated order system(AOS) for logistics integration
-- 
GitLab