EasyPost-Official 2.8.3

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

// Install EasyPost-Official as a Cake Tool
#tool nuget:?package=EasyPost-Official&version=2.8.3

EasyPost .Net Client Library

CI NuGet version

EasyPost, the simple shipping solution. You can sign up for an account at https://easypost.com.

Install

Install-Package EasyPost-Official

See NuGet docs for additional instructions on installing via the dialog or the console.

Usage

A simple create & buy shipment example:

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using EasyPost;
using Newtonsoft.Json;

namespace example
{
    class exampleClass
    {
        static async Task Main()
        {
            EasyPost.ClientManager.SetCurrent(Environment.GetEnvironmentVariable("EASYPOST_API_KEY"));

            Dictionary<string, object> fromAddress = new Dictionary<string, object>() {
                { "name", "Dr. Steve Brule" },
                { "street1", "417 Montgomery Street" },
                { "street2", "5th Floor" },
                { "city", "San Francisco" },
                { "state", "CA" },
                { "country", "US" },
                { "zip", "94104" },
                { "phone", "4153334444" }
            };

            Dictionary<string, object> toAddress = new Dictionary<string, object>() {
                { "company", "EasyPost" },
                { "street1", "417 Montgomery Street" },
                { "street2", "Floor 5" },
                { "city", "San Francisco" },
                { "state", "CA" },
                { "country", "US" },
                { "zip", "94104" },
                { "phone", "415-379-7678" }
            };

            Dictionary<string, object> parcel = new Dictionary<string, object>() {
                { "length", 8 },
                { "width", 6 },
                { "height", 5 },
                { "weight", 10 },
            }

            Shipment shipment = await Shipment.Create(new Dictionary<string, object>() {
                { "from_address", fromAddress },
                { "to_address", toAddress },
                { "parcel", parcel },
            });

            await shipment.Buy(shipment.LowestRate());

            Console.WriteLine(JsonConvert.SerializeObject(shipment, Formatting.Indented));
        }
    }
}

Configuration

Single API Key

If you are operating with a single EasyPost API key, during the initialization of your application add the following to configure EasyPost.

using EasyPost;

ClientManager.SetCurrent("ApiKey");

Multiple API Keys

If you are operating with multiple EasyPost API keys, or wish to delegate the construction of the client requests, configure the ClientManager with a delegate at application initialization.

using EasyPost;

ClientManager.SetCurrent(() => new Client(new ClientConfiguration("yourApiKeyHere")));

Warning about Threads

NOTE: The EasyPost .NET client library (in particular, the ClientManager global object) is not threadsafe; do not attempt to perform requests from multiple threads in parallel. This can be particularly problematic if using multiple API keys; make sure to always use a Mutex, Monitor, or other synchronization method to ensure that concurrent requests do not enter the EasyPost library from different threads.

Documentation

API Documentation can be found at: https://easypost.com/docs/api.

Upgrading major versions of this project? Refer to the Upgrade Guide.

Development

It is highly recommended to use a purpose-built IDE when working with this project such as Visual Studio. Most actions such as building, cleaning, and testing can be done via the GUI.

# Lint project
dotnet-format

# Run tests (recommended to instead run via an IDE like Visual Studio)
dotnet test

# Pull EasyVCR submodule
git submodule init
git submodule update --recursive

Testing

The test suite in this project was specifically built to produce consistent results on every run, regardless of when they run or who is running them. This project uses EasyVCR to record and replay HTTP requests and responses via "cassettes". When the suite is run, the HTTP requests and responses for each test function will be saved to a cassette if they do not exist already and replayed from this saved file if they do, which saves the need to make live API calls on every test run.

If you make an addition to this project, the request/response will get recorded automatically for you if a _vcr.SetUpTest("testName"); is included in the test function. When making changes to this project, you'll need to re-record the associated cassette to force a new live API call for that test which will then record the request/response used on the next run.

The test suite has been populated with various helpful fixtures that are available for use, each completely independent from a particular user with the exception of the USPS carrier account ID which has a fallback value to our internal testing user's ID. If you are a non-EasyPost employee and are re-recording cassettes, you may need to provide the USPS_CARRIER_ACCOUNT_ID environment variable with the ID associated with your USPS account (which will be associated with your API keys in use) for tests that use this fixture.

Note on dates: Some fixtures use hard-coded dates that may need to be incremented if cassettes get re-recorded (such as reports or pickups).

Test Coverage

Unit test coverage reports can be generated by running the generate_test_reports.sh Bash script from the root of this repository.

A report will be generated for each version of the library. Final reports will be stored in the coveragereport folder in the root of the repository following generation.

The script requires the following tools installed in your PATH:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on EasyPost-Official:

Package Downloads
YeditepeSoft.Shipment

YeditepeSoft Shipment Library

EasyPost-Extensions

Package Description

Umbraco.Commerce.ShippingProviders.EasyPost The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

EasyPost shipping provider for Umbraco Commerce

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.3.1 169 4/12/2024
6.3.0 119 4/10/2024
6.2.1 971 3/18/2024
6.2.0 3,493 2/7/2024
6.1.0 3,178 1/8/2024
6.0.0 4,363 12/6/2023
5.8.0 3,893 10/11/2023
5.7.0 3,761 9/5/2023
5.6.0 620 8/31/2023
5.5.0 571 8/29/2023
5.4.1 1,919 8/17/2023
5.4.0 994 8/14/2023
5.3.0 1,066 7/28/2023
5.2.0 1,443 7/12/2023
5.1.0 8,218 6/6/2023
5.0.0 3,238 5/15/2023
4.6.2 2,792 5/15/2023
4.6.0 2,621 4/18/2023
4.5.0 1,659 3/22/2023
4.4.0 2,886 2/21/2023
4.3.0 1,787 1/18/2023
4.2.0 1,066 1/13/2023
4.1.0 3,505 12/7/2022
4.0.2 2,278 11/1/2022
4.0.1 5,521 10/24/2022
4.0.0 2,081 10/12/2022
3.6.1 3,409 9/22/2022
3.6.0 940 9/22/2022
3.5.0 2,144 8/25/2022
3.4.0 1,468 8/2/2022
3.3.0 2,746 7/18/2022
3.2.0 990 7/11/2022
3.1.0 9,673 5/19/2022
3.0.0 12,750 4/15/2022
2.8.3 8,299 7/1/2022
2.8.2 30,173 2/25/2022
2.8.1 3,578 2/17/2022
2.5.1.3 95,871 1/7/2020
2.5.1.2 20,867 9/29/2019
2.5.1.1 20,721 7/5/2019
2.5.1 24,982 10/9/2018
2.5.0.1 5,842 10/3/2018
2.5.0 5,623 9/28/2018
2.4.0 13,833 6/22/2018
2.3.1.4 18,197 1/9/2018
2.3.1.3 17,674 11/29/2017
2.3.1.2 28,474 5/16/2017
2.3.1.1 8,606 4/20/2017
2.3.1 6,642 3/28/2017
2.3.0 6,049 3/11/2017
2.2.7 6,091 3/7/2017
2.2.6 7,885 1/24/2017
2.2.5 6,174 1/24/2017
2.2.4 6,985 12/15/2016
2.2.3 6,870 12/13/2016
2.2.2 5,936 12/7/2016
2.2.1 11,167 8/26/2016
2.2.0 6,154 8/25/2016
2.1.2.1 6,324 8/19/2016
2.1.1 6,774 7/8/2016
2.1.0 7,570 5/9/2016
2.0.3.1 7,382 3/12/2016
2.0.3 6,117 3/3/2016
2.0.2.1 6,402 2/19/2016
2.0.2 6,547 2/10/2016
2.0.1.1 10,629 1/14/2016
2.0.1 7,124 1/14/2016
2.0.0 6,337 1/12/2016
1.2.2.2 7,651 12/18/2015
1.2.2.1 6,203 11/9/2015
1.2.2 6,012 11/4/2015
1.2.1 6,838 10/27/2015
1.2.0.1 6,079 10/6/2015
1.2.0 6,715 9/15/2015
1.1.7.2 5,932 9/10/2015
1.1.7.1 6,379 8/12/2015
1.1.7 7,497 6/26/2015
1.1.6 6,023 6/11/2015
1.1.5.2 5,998 6/5/2015
1.1.5.1 6,292 5/13/2015
1.1.4.5 6,181 3/20/2015
1.1.4.4 6,236 2/6/2015
1.1.4.3 5,996 2/6/2015
1.1.4.1 6,146 1/29/2015
1.1.4 6,153 1/29/2015
1.1.3.2 5,931 1/20/2015
1.1.3 6,418 12/17/2014
1.1.2.6 6,410 11/19/2014
1.1.2.5 6,235 11/17/2014
1.1.2.4 6,644 11/3/2014
1.1.2.3 6,377 11/3/2014
1.1.2.1 7,140 10/31/2014
1.1.2 8,904 10/31/2014
1.1.1.2 7,676 10/30/2014
1.1.0 8,542 10/7/2014
1.0.1.7 5,931 8/15/2014
1.0.1.6 5,936 7/11/2014
1.0.1.4 6,133 6/10/2014
1.0.1.3 5,902 6/6/2014