Overview
Installation
The .NET SDK for Cradl can be downloaded from nuget
dotnet add package Lucidtech.Las
Getting started
After Lucidtech.Las is installed and you have received credentials, you are ready to enhance your document-flow with the las client:
using System;
using Lucidtech.Las;
var client = new Client();
var models = client.ListModels();
var documents = client.ListDocuments();
var workflows = client.ListWorkflows();
The .NET SDK is open-source, and the code can be found here. Contributions are more than welcome.