UnifiedTo 0.38.0

dotnet add package UnifiedTo --version 0.38.0
                    
NuGet\Install-Package UnifiedTo -Version 0.38.0
                    
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="UnifiedTo" Version="0.38.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UnifiedTo" Version="0.38.0" />
                    
Directory.Packages.props
<PackageReference Include="UnifiedTo" />
                    
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 UnifiedTo --version 0.38.0
                    
#r "nuget: UnifiedTo, 0.38.0"
                    
#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 UnifiedTo@0.38.0
                    
#: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=UnifiedTo&version=0.38.0
                    
Install as a Cake Addin
#tool nuget:?package=UnifiedTo&version=0.38.0
                    
Install as a Cake Tool

UnifiedTo

SDK Example Usage

Example

using UnifiedTo;
using UnifiedTo.Models.Components;

var sdk = new UnifiedToSDK(security: new Security() {
    Jwt = "<YOUR_API_KEY_HERE>",
});

var res = await sdk.Accounting.CreateAccountingAccountAsync(
    accountingAccount: new AccountingAccount() {},
    connectionId: "<id>"
);

// handle response

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme
Jwt apiKey API key

You can set the security parameters through the security optional parameter when initializing the SDK client instance. For example:

using UnifiedTo;
using UnifiedTo.Models.Components;

var sdk = new UnifiedToSDK(security: new Security() {
    Jwt = "<YOUR_API_KEY_HERE>",
});

var res = await sdk.Accounting.CreateAccountingAccountAsync(
    accountingAccount: new AccountingAccount() {},
    connectionId: "<id>"
);

// handle response

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an exception.

By default, an API error will raise a UnifiedTo.Models.Errors.SDKException exception, which has the following properties:

Property Type Description
Message string The error message
StatusCode int The HTTP status code
RawResponse HttpResponseMessage The raw HTTP response
Body string The response content

When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective Errors tables in SDK docs for more details on possible exception types for each operation. For example, the CreateAccountingAccountAsync method throws the following exceptions:

Error Type Status Code Content Type
UnifiedTo.Models.Errors.SDKException 4XX, 5XX */*

Example

using UnifiedTo;
using UnifiedTo.Models.Components;
using UnifiedTo.Models.Errors;

var sdk = new UnifiedToSDK(security: new Security() {
    Jwt = "<YOUR_API_KEY_HERE>",
});

try
{
    var res = await sdk.Accounting.CreateAccountingAccountAsync(
        accountingAccount: new AccountingAccount() {},
        connectionId: "<id>"
    );

    // handle response
}
catch (Exception ex)
{
    if (ex is UnifiedTo.Models.Errors.SDKException)
    {
        // Handle default exception
        throw;
    }
}

Server Selection

Select Server by Index

You can override the default server globally by passing a server index to the serverIndex: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

# Server Description
0 https://api.unified.to North American data region
1 https://api-eu.unified.to European data region
2 https://api-au.unified.to Australian data region
Example
using UnifiedTo;
using UnifiedTo.Models.Components;

var sdk = new UnifiedToSDK(
    serverIndex: 2,
    security: new Security() {
        Jwt = "<YOUR_API_KEY_HERE>",
    }
);

var res = await sdk.Accounting.CreateAccountingAccountAsync(
    accountingAccount: new AccountingAccount() {},
    connectionId: "<id>"
);

// handle response

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the serverUrl: string optional parameter when initializing the SDK client instance. For example:

using UnifiedTo;
using UnifiedTo.Models.Components;

var sdk = new UnifiedToSDK(
    serverUrl: "https://api-au.unified.to",
    security: new Security() {
        Jwt = "<YOUR_API_KEY_HERE>",
    }
);

var res = await sdk.Accounting.CreateAccountingAccountAsync(
    accountingAccount: new AccountingAccount() {},
    connectionId: "<id>"
);

// handle response
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.38.0 15 7/19/2025
0.36.0 112 7/17/2025
0.34.0 133 7/11/2025
0.32.0 59 7/5/2025
0.30.0 137 7/3/2025
0.28.0 91 6/29/2025
0.26.0 127 6/27/2025
0.24.7 137 6/24/2025
0.24.6 67 6/21/2025
0.24.5 163 6/14/2025
0.24.4 281 6/13/2025
0.24.3 285 6/11/2025
0.24.2 140 6/6/2025
0.24.1 135 6/4/2025
0.24.0 136 6/3/2025
0.23.7 146 5/28/2025
0.23.6 145 5/27/2025
0.23.5 145 5/26/2025
0.23.4 139 5/23/2025
0.23.3 221 5/16/2025
0.23.2 222 5/15/2025
0.23.1 144 5/8/2025
0.23.0 142 5/7/2025
0.22.41 146 5/6/2025
0.22.40 146 5/2/2025
0.22.39 90 4/26/2025
0.22.38 160 4/25/2025
0.22.37 166 4/24/2025
0.22.36 189 4/17/2025
0.22.35 191 4/16/2025
0.22.34 183 4/14/2025
0.22.33 132 4/13/2025
0.22.32 161 4/11/2025
0.22.31 171 4/10/2025
0.22.30 163 4/9/2025
0.22.29 163 4/4/2025
0.22.28 162 4/3/2025
0.22.27 159 4/1/2025
0.22.26 117 3/29/2025
0.22.25 124 3/28/2025
0.22.24 157 3/23/2025
0.22.23 141 3/18/2025
0.22.22 215 3/6/2025
0.22.21 215 3/5/2025
0.22.20 105 3/3/2025
0.22.19 102 2/27/2025
0.22.18 101 2/26/2025
0.22.17 119 2/25/2025
0.22.16 103 2/24/2025
0.22.15 100 2/22/2025
0.22.14 117 2/19/2025
0.22.13 116 2/11/2025
0.22.12 98 2/9/2025
0.22.11 104 2/8/2025
0.22.10 104 2/6/2025
0.22.9 106 2/5/2025
0.22.8 111 2/2/2025
0.22.7 109 1/24/2025
0.22.6 109 1/23/2025
0.22.5 104 1/21/2025
0.22.4 93 1/19/2025
0.22.3 93 1/17/2025
0.22.2 67 1/15/2025
0.22.1 101 1/12/2025
0.22.0 106 1/9/2025
0.21.22 97 1/6/2025
0.21.21 104 1/3/2025
0.21.20 111 1/2/2025
0.21.14 111 12/14/2024
0.21.13 112 12/13/2024
0.21.12 103 12/11/2024
0.21.11 106 12/7/2024
0.21.10 107 12/6/2024
0.21.9 105 12/5/2024
0.21.8 116 11/25/2024
0.21.7 115 11/23/2024
0.21.6 101 11/16/2024
0.21.5 98 11/14/2024
0.21.4 102 11/13/2024
0.21.3 114 11/11/2024
0.21.2 109 11/9/2024
0.21.1 112 11/7/2024
0.21.0 101 11/1/2024
0.20.4 101 10/23/2024
0.20.3 99 10/16/2024
0.20.2 102 10/15/2024
0.20.1 108 10/12/2024
0.20.0 109 10/1/2024
0.19.49 122 9/13/2024
0.19.48 135 9/11/2024
0.19.47 127 9/6/2024
0.19.46 108 8/31/2024
0.19.45 112 8/29/2024
0.19.44 101 8/28/2024
0.19.43 118 8/24/2024
0.19.42 141 8/22/2024
0.19.41 132 8/20/2024
0.19.40 131 8/18/2024
0.19.39 125 8/14/2024
0.19.38 110 8/10/2024
0.19.37 108 8/9/2024
0.19.36 84 8/1/2024
0.19.35 82 7/31/2024
0.19.34 104 7/27/2024
0.19.33 104 7/26/2024
0.19.32 97 7/23/2024
0.19.31 129 7/22/2024
0.19.30 107 7/17/2024
0.19.29 146 7/15/2024
0.19.28 104 7/15/2024
0.19.27 101 7/14/2024
0.19.26 87 7/11/2024
0.19.25 115 7/10/2024
0.19.24 129 7/6/2024
0.19.23 121 7/5/2024
0.19.22 126 7/3/2024
0.19.21 99 6/30/2024
0.19.20 104 6/29/2024
0.19.19 116 6/28/2024
0.19.18 109 6/27/2024
0.19.17 122 6/22/2024
0.19.15 133 6/19/2024
0.19.14 133 6/18/2024
0.19.13 144 6/16/2024
0.19.12 142 6/15/2024
0.19.11 131 6/14/2024
0.19.10 123 6/13/2024
0.19.9 1,381 6/12/2024
0.19.8 149 6/10/2024
0.19.7 140 6/8/2024
0.19.6 151 6/5/2024
0.19.5 132 6/4/2024
0.19.4 117 6/1/2024
0.19.3 138 5/30/2024
0.19.2 140 5/30/2024
0.19.1 128 5/28/2024
0.19.0 144 5/25/2024
0.18.7 140 5/24/2024
0.18.6 139 5/22/2024
0.18.5 138 5/22/2024
0.18.4 121 5/19/2024
0.18.3 117 5/18/2024
0.18.2 128 5/18/2024
0.18.1 111 5/17/2024
0.18.0 151 5/10/2024
0.17.4 173 5/7/2024
0.17.3 117 5/3/2024
0.17.2 105 5/2/2024
0.17.1 144 4/30/2024
0.17.0 141 4/26/2024
0.16.1 153 4/19/2024
0.16.0 149 4/18/2024
0.15.4 143 4/16/2024
0.15.3 159 4/13/2024
0.15.2 136 4/12/2024
0.15.1 144 4/12/2024
0.15.0 148 4/11/2024
0.14.1 169 4/4/2024
0.14.0 161 4/2/2024
0.13.2 164 3/29/2024
0.13.1 167 3/29/2024
0.13.0 155 3/28/2024
0.12.7 165 3/24/2024
0.12.6 167 3/20/2024
0.12.5 134 3/14/2024
0.12.4 149 3/7/2024
0.12.3 156 3/5/2024
0.12.2 168 3/2/2024
0.12.1 157 2/28/2024
0.12.0 156 2/27/2024
0.11.1 183 2/26/2024
0.11.0 161 2/25/2024
0.10.2 161 2/23/2024
0.10.1 161 2/23/2024
0.10.0 153 2/22/2024
0.9.11 159 2/22/2024
0.9.10 154 2/21/2024
0.9.9 155 2/17/2024
0.9.8 151 2/16/2024
0.9.7 166 2/15/2024
0.9.6 158 2/15/2024
0.9.5 148 2/14/2024
0.9.4 152 2/13/2024
0.9.3 158 2/12/2024
0.9.2 162 2/7/2024
0.9.1 165 2/7/2024
0.9.0 158 2/6/2024
0.8.0 160 2/6/2024
0.7.0 162 2/5/2024
0.6.1 154 2/1/2024
0.6.0 144 2/1/2024
0.5.15 145 1/31/2024
0.5.14 524 1/30/2024
0.5.13 153 1/26/2024
0.5.12 149 1/25/2024
0.5.11 141 1/23/2024
0.5.10 155 1/23/2024
0.5.9 159 1/22/2024
0.5.8 160 1/19/2024
0.5.7 147 1/19/2024
0.5.6 141 1/18/2024
0.5.5 162 1/16/2024
0.5.4 156 1/15/2024
0.5.3 158 1/13/2024
0.5.2 155 1/11/2024
0.5.1 158 1/10/2024
0.5.0 167 1/9/2024
0.4.2 146 1/9/2024
0.4.1 150 1/9/2024