Installation
The Finteza SDK is available at https://www.nuget.org/packages/FintezaAnalytics.AspNetCore/.
.NET Standard 2.0 or higher is required for operation. |
To install it using the NuGet package manager, run the following command:
PM> Install-Package FintezaAnalytics.AspNetCore |
To install via .NET CLI, run the following command:
> dotnet add package FintezaAnalytics.AspNetCore |
After installation, you can use the SDK functions as follows:
using FintezaAnalytics;
|
SDK Initialization #
To initialize the SDK, call the AddFintezaAnalytics method inside the ConfigureServices method of the Startup class:
services.AddFintezaAnalytics(options =>
|
Specify the following parameters:
Parameter |
Type |
Description |
---|---|---|
WebsiteId * |
string |
Website ID. It can be obtained in the website settings (ID field) of the Finteza panel. |
Url |
string |
Finteza server address. In most cases, it should not be changed. |
* – required parameters.