Integral2uSalesTax

FREEMIUM
By Integral2u | Updated il y a un mois | eCommerce
Popularity

0 / 10

Latency

984ms

Service Level

100%

Health Check

N/A

README

Sales Tax
Easy to use Sales Tax information and Calculators for multiple countries Great for determining and forcasting inventory requirements.
https://www.nuget.org/packages/Integral2uSalesTaxContracts/

Quick Example

using Integral2uSalesTaxContracts.V1;
using Integral2uSalesTaxContracts.V1.Requests;

//You rapid API Key should not be made publicly visible
//Search appsettings or environment variables
//var client = new Integral2uHttpApi("[Your RapidApi Key Here]") as IIntegral2uApi;
var client = new Integral2uRestApi("[Your RapidApi Key Here]") as IIntegral2uApi;
var countryCodes = client.CountryCodes();
foreach(var code in countryCodes??Array.Empty<string>()) 
    Console.Out.WriteLine(code);
var provences = client.StateProvenceFor(new CountryCodeRequest("CAN"));
foreach (var provence in provences ?? Array.Empty<string>())
    Console.Out.WriteLine(provence);

var VAT = client.RecordFor(new SalesTaxRecordRequest("usa", "1001", string.Empty));
Console.Out.WriteLine(VAT.StandardRate);

Console.In.ReadLine();
Followers: 0
Resources:
Product Website
API Creator:
Rapid account: Integral 2 U
Integral2u
integral2u
Log In to Rate API
Rating: 5 - Votes: 1