creatio.client 1.0.30

dotnet add package creatio.client --version 1.0.30
                    
NuGet\Install-Package creatio.client -Version 1.0.30
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="creatio.client" Version="1.0.30" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="creatio.client" Version="1.0.30" />
                    
Directory.Packages.props
<PackageReference Include="creatio.client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add creatio.client --version 1.0.30
                    
#r "nuget: creatio.client, 1.0.30"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package creatio.client@1.0.30
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=creatio.client&version=1.0.30
                    
Install as a Cake Addin
#tool nuget:?package=creatio.client&version=1.0.30
                    
Install as a Cake Tool

Introduction

Creatio Client is a user-friendly connector for Creatio, implemented using .NET Standard 2.0 It provides convenient methods for calling various Creatio services and subscribing to WebSocket messages.

Installation

Use NuGet to install Creatio Client

dotnet add package creatio.client

Initialization

You can initialize CreatioClient in three(3) different ways

  • Use Cookie-based authentication

    var client = new CreatioClient(<AppUrl>, <UserName>, <UserPassword>);
    
  • Use OAuth 2.0

    var client = new CreatioClient(<AppUrl>, <ClientId>, <ClientSecret>, <UserName>, <UserPassword>);
    
  • Use NTLM user authentication

    string appUrl = "https://someName. creatio. com";
    CreatioClient client = new(appUrl, true, CredentialCache. DefaultNetworkCredentials);
    

Usage

To call creatio configuration service from your application, use this example:

var client = new CreatioClient(<AppUrl>, <UserName>, <UserPassword>);
string request = client.CallConfigurationService(<ServiceName>, <MethodName>, <RequestData>);

To execute GET request:

string data = client.ExecuteGetRequest(<Url>);

To execute POST request:

string data = client.ExecutePostRequest(<Url>, <RequestData>);

Subscribe to WebSocket messages:


const string logFile = "ws.json";
CreatioClient client = new(app, username, password, true, true);

client.ConnectionStateChanged += (sender, state) => {
    Console.WriteLine($"Connection state changed to: {state}");
};

JsonSerializerOptions opts = new() {
    WriteIndented = true,
};
client.MessageReceived += (sender, message) => {
    var msgObject = new {
        Header = message.Header,
        Id = message.Id,
        Body = JsonSerializer.Deserialize(message.Body, typeof(object), opts)
    };
    System.IO.File.AppendAllText(logFile,JsonSerializer.Serialize(msgObject, opts), Encoding.UTF8);
};
client.StartListening(CancellationToken.None);
Console.ReadLine();

nuget.org

https://www.nuget.org/packages/creatio.client

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on creatio.client:

Package Downloads
ATF.Repository

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.30 131 9/5/2025
1.0.29 153 8/19/2025
1.0.28 350 4/10/2025
1.0.27 206 4/10/2025
1.0.26 191 4/10/2025
1.0.25 462 3/24/2025
1.0.24 1,448 6/3/2024
1.0.23 403 2/14/2024
1.0.22 754 1/8/2024
1.0.21 670 11/24/2023
1.0.20 156 11/23/2023
1.0.19 147 11/23/2023
1.0.18 949 8/10/2023
1.0.17 300 7/20/2023
1.0.16 321 6/29/2023
1.0.15 232 6/22/2023
1.0.14 325 4/27/2023
1.0.13 228 4/27/2023
1.0.12 748 10/24/2022
1.0.11 559 10/18/2022
1.0.10 516 10/17/2022
1.0.9 600 9/19/2022
1.0.8 602 7/25/2022
1.0.7 28,051 2/17/2022
1.0.6 637 2/16/2022
1.0.5 647 2/14/2022
1.0.4 1,298 2/22/2021
1.0.3 453 2/19/2021
1.0.2 1,226 1/20/2020
1.0.1 905 11/1/2019

Version 1.0.30 release