baseVISION.Core.Connectors.RunMyAccount 3.0.8

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

RunMyAccount API Client

This library allows connecting to the RunMyAccount API. This allows you to create integrated applications with youre invoicing system.

Getting Started

At the begining you need to generate your API access tokens. More information on the RunMyAccounts help page https://www.runmyaccounts.ch/buchhaltungs-hilfe/doku.php/api/start#wo_finde_ich_den_api_key

The API client is available as a nuget package and can easily be installed from there.

Creating the client by specifying the secrets you received in the step before:

RunMyAccountsClient client = new RunMyAccountsClient(string tenant, string apikey);
            

Retrieving Objects

Retrieve all invoices:

List<RunMyAccountsInvoiceExist> invoices = client.ListAllInvoices();

Creating a new invoice:

RunMyAccountsInvoice i = new RunMyAccountsInvoice();
client.CreateInvoice(i);

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Release Notes

3.0.8

- New Features
	- No
- Bug fixes
	- Project and department not supplied in request

3.0.7

- New Features
	- InvoiceExist object now contains the customer object
- Bug fixes
	- No

3.0.6

- New Features
	- Amount and Netamount and Paid of Accounts Payable Object are now a Double data type
- Bug fixes
	- No

3.0.0

- New .NET 8
- Changing Namespace

History

2.0.5: Get Invoices Timeout Fix with own HttpClient instead of RestSharp 2.0.4: Retrun status on create methods 2.0.3: Update Restsharp, Improve Multithreading and add Timeout of 10 seconds 2.0.2: Bugfix Json Convert of Articles 2.0.1: Stable Release 2.0.0-alpha: Remove JSON.Net dependency and update RestSharp to 107 1.0.2: Updating Json.NET and RestSharp 1.0.1: Replace special characters in ordernumber 1.0.0: First Release

Authors

  • Thomas Kurth

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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
3.0.8 158 2/1/2024

### 3.0.8

- New Features
 - No
- Bug fixes
 - Project and department not supplied in request

### 3.0.7

- New Features
 - InvoiceExist object now contains the customer object
- Bug fixes
 - No

### 3.0.6

- New Features
 - Amount and Netamount and Paid of Accounts Payable Object are now a Double data type
- Bug fixes
 - No

### 3.0.0

- New .NET 8
- Changing Namespace