Shippo 4.0.1

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

// Install Shippo as a Cake Tool
#tool nuget:?package=Shippo&version=4.0.1

Shippo

<div align="left"> <a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a> <a href="https://opensource.org/licenses/MIT"> <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" /> </a> </div>

SDK Installation

Nuget

dotnet add package Shippo

SDK Example Usage

Example

using Shippo;
using Shippo.Models.Components;
using Shippo.Models.Requests;

var sdk = new ShippoSDK(
    apiKeyHeader: "<YOUR_API_KEY_HERE>",
    shippoApiVersion: "2018-02-08");

var res = await sdk.Addresses.ListAsync(
    page: 1,
    results: 5,
    shippoApiVersion: "2018-02-08");

// handle response

Available Resources and Operations

Addresses

  • List - List all addresses
  • Create - Create a new address
  • Get - Retrieve an address
  • Validate - Validate an address

Batches

CarrierAccounts

CustomsDeclarations

  • List - List all customs declarations
  • Create - Create a new customs declaration
  • Get - Retrieve a customs declaration

CustomsItems

  • List - List all customs items
  • Create - Create a new customs item
  • Get - Retrieve a customs item

RatesAtCheckout

Manifests

  • List - List all manifests
  • Create - Create a new manifest
  • Get - Retrieve a manifest

Orders

  • List - List all orders
  • Create - Create a new order
  • Get - Retrieve an order

CarrierParcelTemplates

  • List - List all carrier parcel templates
  • Get - Retrieve a carrier parcel templates

Parcels

  • List - List all parcels
  • Create - Create a new parcel
  • Get - Retrieve an existing parcel

Pickups

Rates

Refunds

  • Create - Create a refund
  • List - List all refunds
  • Get - Retrieve a refund

ServiceGroups

  • List - List all service groups
  • Create - Create a new service group
  • Update - Update an existing service group
  • Delete - Delete a service group

Shipments

  • List - List all shipments
  • Create - Create a new shipment
  • Get - Retrieve a shipment

TrackingStatus

  • Create - Register a tracking webhook
  • Get - Get a tracking status

Transactions

  • List - List all shipping labels
  • Create - Create a shipping label
  • Get - Retrieve a shipping label

UserParcelTemplates

  • List - List all user parcel templates
  • Create - Create a new user parcel template
  • Delete - Delete a user parcel template
  • Get - Retrieves a user parcel template
  • Update - Update an existing user parcel template

ShippoAccounts

  • List - List all Shippo Accounts
  • Create - Create a Shippo Account
  • Get - Retrieve a Shippo Account
  • Update - Update a Shippo Account

Global Parameters

Global Parameters

A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.

For example, you can set SHIPPO-API-VERSION to "2018-02-08" at SDK initialization and then you do not have to pass the same value on calls to operations like List. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.

Available Globals

The following global parameter is available.

Name Type Required Description
shippoApiVersion string String used to pick a non-default API version to use

Example

using Shippo;
using Shippo.Models.Components;
using Shippo.Models.Requests;

var sdk = new ShippoSDK(
    apiKeyHeader: "<YOUR_API_KEY_HERE>",
    shippoApiVersion: "2018-02-08");

var res = await sdk.Addresses.ListAsync(
    page: 1,
    results: 5,
    shippoApiVersion: "2018-02-08");

// handle response

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or thow an exception. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate type.

Error Object Status Code Content Type
Shippo.Models.Errors.InitiateOauth2SigninResponseBody 400 application/json
Shippo.Models.Errors.InitiateOauth2SigninCarrierAccountsResponseBody 401 application/json
Shippo.Models.Errors.InitiateOauth2SigninCarrierAccountsResponseResponseBody 404 application/json
Shippo.Models.Errors.SDKException 4xx-5xx /

Example

using Shippo;
using Shippo.Models.Components;
using System;
using Shippo.Models.Errors;
using Shippo.Models.Requests;

var sdk = new ShippoSDK(
    apiKeyHeader: "<YOUR_API_KEY_HERE>",
    shippoApiVersion: "2018-02-08");

InitiateOauth2SigninRequest req = new InitiateOauth2SigninRequest() {
    CarrierAccountObjectId = "<value>",
    RedirectUri = "http://fine-cummerbund.biz",
};

try
{
    var res = await sdk.CarrierAccounts.InitiateOauth2SigninAsync(req);
    // handle response
}
catch (Exception ex)
{
    if (ex is InitiateOauth2SigninResponseBody)
    {
        // handle exception
    }
    else if (ex is InitiateOauth2SigninCarrierAccountsResponseBody)
    {
        // handle exception
    }
    else if (ex is InitiateOauth2SigninCarrierAccountsResponseResponseBody)
    {
        // handle exception
    }
    else if (ex is Shippo.Models.Errors.SDKException)
    {
        // handle exception
    }
}

Server Selection

Select Server by Index

You can override the default server globally by passing a server index to the serverIndex: number optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

# Server Variables
0 https://api.goshippo.com None

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the serverUrl: str optional parameter when initializing the SDK client instance. For example:

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme
APIKeyHeader apiKey API key

To authenticate with the API the APIKeyHeader parameter must be set when initializing the SDK client instance. For example:

using Shippo;
using Shippo.Models.Components;
using Shippo.Models.Requests;

var sdk = new ShippoSDK(
    apiKeyHeader: "<YOUR_API_KEY_HERE>",
    shippoApiVersion: "2018-02-08");

var res = await sdk.Addresses.ListAsync(
    page: 1,
    results: 5,
    shippoApiVersion: "2018-02-08");

// handle response

Development

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

SDK Created by Speakeasy

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Shippo:

Package Downloads
FenixAlliance.ABS.Integrations.Shippo

Application Component for the Alliance Business Suite.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0-beta.1 32 6/17/2024
4.0.1 63 6/17/2024
4.0.0 148 6/7/2024
4.0.0-beta.1 39 6/7/2024
3.3.0 41,462 2/1/2022
3.2.0 5,541 4/26/2021
3.1.1 814 4/9/2021
3.1.0 421 3/29/2021
3.0.0 870 1/20/2021
2.1.15 6,570 7/30/2020
2.1.14 1,142 4/17/2020
2.1.13 11,702 10/29/2018
2.1.12 807 10/23/2018
2.1.11 777 10/23/2018
2.1.10 1,943 9/7/2018
2.1.8 2,317 9/7/2018
2.1.2 16,661 10/9/2017
2.1.1 1,166 9/13/2017
2.1.0 1,340 9/7/2017
2.0.2 10,709 5/24/2017
1.5.7 2,541 11/17/2016
1.5.6 1,168 11/17/2016
1.5.5 1,259 11/11/2016
1.5.4 3,184 11/3/2016
1.5.3 1,710 11/2/2016
1.5.0 1,211 10/26/2016
1.4.4 15,156 9/16/2015
1.4.3 1,119 9/16/2015
1.4.2 1,148 7/8/2015
1.4.0 1,138 3/26/2015
1.0.3 1,069 3/26/2015
1.0.2 1,067 3/26/2015
1.0.1 1,055 3/26/2015
1.0.0 1,319 3/26/2015