Forcura.NPPESAPI
2.0.0
See the version list below for details.
dotnet add package Forcura.NPPESAPI --version 2.0.0
NuGet\Install-Package Forcura.NPPESAPI -Version 2.0.0
<PackageReference Include="Forcura.NPPESAPI" Version="2.0.0" />
paket add Forcura.NPPESAPI --version 2.0.0
#r "nuget: Forcura.NPPESAPI, 2.0.0"
// Install Forcura.NPPESAPI as a Cake Addin #addin nuget:?package=Forcura.NPPESAPI&version=2.0.0 // Install Forcura.NPPESAPI as a Cake Tool #tool nuget:?package=Forcura.NPPESAPI&version=2.0.0
NPPES API for .NET
This is a .NET wrapper for interacting with the CMS National Plan and Provider Enumeration System NPPES National Provider Identifier (NPI) lookup system
For more information visit the NPI registry
Usage
Requests are as simple as providing an NPI number to lookup:
var results = await NPPESApiClient.SearchAsync("8942315671");
OR
var results = await NPPESApiClient.SearchAsync(new NPPESRequest
{
Number = "5631047582"
});
For more complicated queries, use the other provided fields on the NPPESRequest
object:
var results = await NPPESApiClient.SearchAsync(new NPPESRequest
{
FirstName = "John",
LastName = "Doe"
});
Using the builder:
var builder = new NPPESRequestBuilder();
var request = builder
.Version(NPPESVersion.v1_0)
.Number("1234567890")
.Build();
var results = await NPPESApiClient.SearchAsync(request);
Dependency Injection
For netcore/net5+ you can register this with the IServiceCollection
through the extension method:
using Forcura.NPPES.DependencyInjection;
// simple approach
IServiceCollection serviceCollection = ...;
serviceCollection.AddNPPESApi();
// for any customizations of the IHttpClientBuilder
IServiceCollection serviceCollection = ...;
serviceCollection.AddHttpClient<NPPESApiClient>();
It is important to note that the NPPES API by default, accesses the latest public api version, as currently it is backward compatible, this is something to be aware of.
License
Copyright 2022 Forcura
Licensed under the Apache 2.0 license
Resources
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.5 is compatible. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 1.5
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 10.0.1)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 10.0.1)
-
.NETStandard 2.1
- Newtonsoft.Json (>= 10.0.1)
-
net5.0
- Microsoft.Extensions.DependencyInjection (>= 5.0.0)
- Microsoft.Extensions.Http (>= 5.0.0)
- Newtonsoft.Json (>= 10.0.1)
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Newtonsoft.Json (>= 10.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Supported framework changes: Support for net45 has been dropped. Library uses `HttpClient` in a better fashion that supports injection from `IHttpClientFactory`