IndicinaDecideLibraryPackage 0.1.1
dotnet add package IndicinaDecideLibraryPackage --version 0.1.1
NuGet\Install-Package IndicinaDecideLibraryPackage -Version 0.1.1
<PackageReference Include="IndicinaDecideLibraryPackage" Version="0.1.1" />
paket add IndicinaDecideLibraryPackage --version 0.1.1
#r "nuget: IndicinaDecideLibraryPackage, 0.1.1"
// Install IndicinaDecideLibraryPackage as a Cake Addin #addin nuget:?package=IndicinaDecideLibraryPackage&version=0.1.1 // Install IndicinaDecideLibraryPackage as a Cake Tool #tool nuget:?package=IndicinaDecideLibraryPackage&version=0.1.1
IndicinaDecideLibraryPackage
The IndicinaDecideLibraryPackage is a C# library that provides functionality to analyze different types of bank statements, such as PDF, CSV, and JSON statements. It integrates with the Indicina Decide API to perform statement analysis and retrieve analysis results.
Features
- Supports PDF, CSV, and JSON statement analysis.
- Retrieves authorization access token for API authentication.
- Sends API requests to initiate statement analysis.
- Monitors the status of PDF statement analysis.
- Parses analysis results into a standardized format.
Requirements
- .NET Core 7.0 or later
Installation
- Installing Via Nuget
NuGet\Install-Package IndicinaDecideLibraryPackage -Version 0.1.0
- Installing via the .NET Core command line interface
dotnet add package IndicinaDecideLibraryPackage --version 0.1.0
Usage
- Add a using statement for the IndicinaDecideLibrary
using IndicinaDecideLibrary;
- Create a DecideAuth instance, passing your credentials.
DecideAuth auth = new(clientId, clientSecret);
- Create a DecideAPI instance.
DecideAPI api = new(auth);
- Define necessary parameters needed as per the statement type (JSON, PDF, CSV)
- Call the necessary method as related to your statement type.
- AnalyzeJson
- AnalyzeCSV
- InitiatePdfAnalysis
- GetPdfAnalysisResult
- Retrieve and process the analysis results returned by the library.
Here's an example of using the library to analyze a PDF statement:
N:B PDF Analysis are not provided instantly, you get a job_id when you initiate the analysis You can then use this job_id to monitor the status of the pdf analysis Job
using IndicinaDecideLibrary;
string clientId = Environment.GetEnvironmentVariable("INDICINA_CLIENT_ID");
string clientSecret = Environment.GetEnvironmentVariable("INDICINA_CLIENT_SECRET");
DecideAuth auth = new(clientId, clientSecret);
DecideAPI api = new(auth);
Customer customer = new(customer_id: "12345", email: "example@email.com",
first_name: "John", last_name: "Doe", phone: "1234567890");
string jobID = api.InitiatePdfAnalysis(pdfPath: "test.pdf", currency: Currency.NGN,
bank: Bank.STERLING, customer: customer);
PdfAnalysisResult resData;
do
{
// Get the PDF analysis result
resData = api.GetPdfAnalysisResult(jobID);
// Print the status
Console.WriteLine(resData.Data.Status);
// Sleep for a certain duration before checking again
Thread.Sleep(7000); // Sleep for 7 second (adjust the duration as needed)
} while (resData.Data.Status != PDFStatus.DONE.ToString() && resData.Data.Status != PDFStatus.FAILED.ToString());
// You can use dot referencing to access the values in the response
// We have used a convenient ToJson() to help you see the results
if (resData.Data.Status == "DONE")
{
Console.WriteLine(resData.Data.DecideResponse.CashFlowAnalysis.ToJson());
Console.WriteLine(resData.Data.DecideResponse.BehaviouralAnalysis.ToJson());
Console.WriteLine(resData.Data.DecideResponse.SpendAnalysis.ToJson());
Console.WriteLine(resData.Data.DecideResponse.IncomeAnalysis.ToJson());
}
else
{
Console.WriteLine($"Error: {resData.Data.Message}");
}
And here's an example of using the library to analyze a CSV statement:
using IndicinaDecideLibrary;
string clientId = Environment.GetEnvironmentVariable("INDICINA_CLIENT_ID");
string clientSecret = Environment.GetEnvironmentVariable("INDICINA_CLIENT_SECRET");
DecideAuth auth = new(clientId, clientSecret);
DecideAPI api = new(auth);
Customer customer = new(customer_id: "12345", email: "example@email.com",
first_name: "John", last_name: "Doe", phone: "1234567890");
// Define the csv path
string csvPath = "example.csv";
DefaultAnalysisResult response = api.AnalyzeCsv(csvPath: csvPath, customer: customer);
// You can use dot referencing to access the values in the response
// We have used a convenient ToJson() to help you see the results
Console.WriteLine(response.Status);
Console.WriteLine(response.Data.CashFlowAnalysis.ToJson());
Console.WriteLine(response.Data.BehaviouralAnalysis.ToJson());
Console.WriteLine(response.Data.SpendAnalysis.ToJson());
Console.WriteLine(response.Data.IncomeAnalysis.ToJson());
And here's an example of using the library to analyze a JSON statement:
using IndicinaDecideLibrary;
string clientId = Environment.GetEnvironmentVariable("INDICINA_CLIENT_ID");
string clientSecret = Environment.GetEnvironmentVariable("INDICINA_CLIENT_SECRET");
DecideAuth auth = new(clientId, clientSecret);
DecideAPI api = new(auth);
Customer customer = new(customer_id: "12345", email: "example@email.com",
first_name: "John", last_name: "Doe", phone: "1234567890");
// Define the statement format and string
StatementFormat statementFormat = StatementFormat.MONO;
string statementString = @"{
""paging"": {
""total"": 190,
""page"": 2,
""previous"": ""https://api.withmono.com/accounts/:id/transactions?page=2"",
""next"": ""https://api.withmono.com/accounts/:id/transactions?page=3""
},
""data"": [
{
""_id"": ""5f171a54xxxxxxxxxxxx1154"",
""amount"": 10000,
""date"": ""2020-07-21T00:00:00.000Z"",
""narration"": ""TRANSFER from JOHN DOE to JANE SMITH"",
""type"": ""debit"",
""category"": ""E-CHANNELS""
},
{
""_id"": ""5d171a54xxxxxxxxxxxx6654"",
""amount"": 20000,
""date"": ""2020-07-21T00:00:00.000Z"",
""narration"": ""TRANSFER from JOHN DOE to EVA SMITH"",
""type"": ""debit"",
""category"": ""E-CHANNELS""
}
]
}";
DefaultAnalysisResult response = api.AnalyzeJson(statementFormat, statementString, customer);
// You can use dot referencing to access the values in the response
// We have used a convenient ToJson() to help you see the results
Console.WriteLine(response.Status);
Console.WriteLine(response.Data.CashFlowAnalysis.ToJson());
Console.WriteLine(response.Data.BehaviouralAnalysis.ToJson());
Console.WriteLine(response.Data.SpendAnalysis.ToJson());
Console.WriteLine(response.Data.IncomeAnalysis.ToJson());
Console.WriteLine(response.Data.ScorecardResults.ToJson());
Running Analysis with ScoreCard
You can run a statement analysis with scorecard ids you have created as described below.
using IndicinaDecideLibrary;
string clientId = Environment.GetEnvironmentVariable("INDICINA_CLIENT_ID");
string clientSecret = Environment.GetEnvironmentVariable("INDICINA_CLIENT_SECRET");
DecideAuth auth = new(clientId, clientSecret);
DecideAPI api = new(auth);
Customer customer = new(customer_id: "12345", email: "example@email.com",
first_name: "John", last_name: "Doe", phone: "1234567890");
// Define a list of pre-created scorecard ids
List<int> scorecardIds = new() { 123 };
// Define the statement format and string
StatementFormat statementFormat = StatementFormat.MONO;
string statementString = @"{
""paging"": {
""total"": 190,
""page"": 2,
""previous"": ""https://api.withmono.com/accounts/:id/transactions?page=2"",
""next"": ""https://api.withmono.com/accounts/:id/transactions?page=3""
},
""data"": [
{
""_id"": ""5f171a54xxxxxxxxxxxx1154"",
""amount"": 10000,
""date"": ""2020-07-21T00:00:00.000Z"",
""narration"": ""TRANSFER from JOHN DOE to JANE SMITH"",
""type"": ""debit"",
""category"": ""E-CHANNELS""
},
{
""_id"": ""5d171a54xxxxxxxxxxxx6654"",
""amount"": 20000,
""date"": ""2020-07-21T00:00:00.000Z"",
""narration"": ""TRANSFER from JOHN DOE to EVA SMITH"",
""type"": ""debit"",
""category"": ""E-CHANNELS""
}
]
}";
DefaultAnalysisResult response = api.AnalyzeJson(statementFormat, statementString, customer, scorecardIds);
// You can use dot referencing to access the values in the response
// We have used a convenient ToJson() to help you see the results
Console.WriteLine(response.Status);
Console.WriteLine(response.Data.CashFlowAnalysis.ToJson());
Console.WriteLine(response.Data.BehaviouralAnalysis.ToJson());
Console.WriteLine(response.Data.SpendAnalysis.ToJson());
Console.WriteLine(response.Data.IncomeAnalysis.ToJson());
Console.WriteLine(response.Data.ScorecardResults.ToJson());
Make sure to replace Bank.Access, customer, Currency.NGN, filePath, password, csvPath, format, and statementString with the appropriate values for your use case.
Contributing
Contributions to the IndicinaDecideLibraryPackage Library are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request on the project's GitHub repository.
License
This project is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- MinVer (>= 4.3.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.