Moneyhub.ApiClient 1.0.1

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

Moneyhub.ApiClient is a client SDK library for accessing Moneyhub's Data and Identity API's using ReactiveUI.Refit

https://www.moneyhub.com/home

https://api.moneyhub.co.uk/

https://identity.moneyhub.co.uk

Registering Moneyhubs interfaces can be done in a number of ways, one of these is detailed below using Autofac:

var builder = new ContainerBuilder();

var services = new ServiceCollection();

services.AddRefitClient(refitSettings) .ConfigureHttpClient(httpClient ⇒ { httpClient.BaseAddress = new Uri("https://api.moneyhub.co.uk/v2.0"); });

builder.Populate(services);

builder.Build();

Once an interface is registered you can create an instance and use the IAccount object to access the range of different methods available from account section of Moneyhubs API.

All current API's and methods should be available as detailed in their SwaggerUI definitions for Moneyhubs data and identity endpoints

https://api.moneyhub.co.uk/swagger.json https://identity.moneyhub.co.uk/swagger.json

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Moneyhub.ApiClient:

Package Downloads
Appmilla.MoneyhubAuthApi

An .Net CLI template to create an ASP.Net Core API for Moneyhub access protected by Duende IdentityServer

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 1,031 3/25/2022

Initial release