FioBankApiClient 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package FioBankApiClient --version 1.0.0                
NuGet\Install-Package FioBankApiClient -Version 1.0.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="FioBankApiClient" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FioBankApiClient --version 1.0.0                
#r "nuget: FioBankApiClient, 1.0.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.
// Install FioBankApiClient as a Cake Addin
#addin nuget:?package=FioBankApiClient&version=1.0.0

// Install FioBankApiClient as a Cake Tool
#tool nuget:?package=FioBankApiClient&version=1.0.0                

What is FioBankApiClient?

FioBankApiClient is C# library to download your account activity from FIO Bank.

Requirements

  • .NET 6, .NET 7 or.NET 8 installed
  • Token from FIO internetbanking

How to install

Install FioBankApiClient via NuGet package

PM> Install-Package FioBankApiClient

Obtain API Token from your FIO internetbanking:

You'll need an API token to access the FIO Bank API.

Instructions for obtaining a token can be found in the "Z�SK�N� TOKENU" section of the FIO Bank API documentation: https://www.fio.cz/docs/cz/API_Bankovnictvi.pdf

Initialization of the Fio API Client

Add FioBankApiClient services to your project's IServiceCollection and provide your API token:

// Your Fio API token
string yourApiToken = "rdso4JIBS...";

// Add Fio Bank Api client
applicationBuilder.Services.AddFioBankApiClient(yourApiToken);

Examples of using

Important note: There's a 30-second limit between api calls. If you try to call it too quickly, you'll get a 409 Conflict error."

Listing transactions in specific Date/Time range
string[] formats = { "dd/MM/yyyy" };
Result<DateTimeRange> rangeOrFailure = DateTimeRange.Create("01/06/2024", "01/07/2024", formats);

if (rangeOrFailure.IsSuccess)
{
    Result<AccountStatement> transactions = await apiClientCaller.GetTransactionsInDateRangeAsync(rangeOrFailure.Value);

    Result<string> xmlTransactions = await apiClientCaller.GetTransactionsInDateRangeAsync(rangeOrFailure.Value, FioDataFormat.Xml);
}
Listing transactions since last download
Result<AccountStatement> lastTransactions = await apiClientService.GetTransactionsSinceLastDownloadAsync();

Result<string> csvLastTransactions = await apiClientService.GetTransactionsSinceLastDownloadAsync(FioDataFormat.Csv);   
Listing transactions since a certain statement ID and year
Result<AccountStatement> transactionsByIdYear = await apiClientService.GetTransactionsByStatementIdAndYearAsync(1, 2024);

Result<string> xmlTransactionsByIdYear = await apiClientService.GetTransactionsByStatementIdAndYearAsync(1, 2024, FioDataFormat.Xml);
Request Id and Year of last created official account statement (optionally filtered by year)
Result<string> lastStatement = await apiClientService.GetLastStatementAsync(2024);
Set the cursor to the date of the last unsuccessful download transaction
DateTimeOffset unsuccessfulDateTime = new DateTimeOffset(2024, 5, 1, 8, 6, 32, new TimeSpan(1, 0, 0));

await apiClientService.SetCursorToLastDateAsunync(unsuccessfulDateTime);
Set the cursor to the ID of the last successfully downloaded transaction
await apiClientService.SetCursorToLastIdAsync(1);

Submitting feature requests and bugs

Bugs and feature request are tracked on GitHub

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. 
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
1.1.0 67 9/22/2024
1.0.1 73 9/13/2024
1.0.0 80 9/13/2024