Meta-package that includes all GO! Express carrier packages for Parcel.NET.
$ dotnet add package Parcel.NET.GoExpress.All
Meta-package that references all GO! Express packages in Parcel.NET. Install this single package to get the full GO! Express integration.
dotnet add package Parcel.NET.GoExpress.All
| Package | Description |
|---|---|
Parcel.NET.GoExpress | Core: configuration, Basic Auth, GoExpressBuilder |
Parcel.NET.GoExpress.Shipping | Shipping client — create/cancel shipments, labels |
Parcel.NET.GoExpress.Tracking | Tracking client — track by HWB number |
builder.Services.AddGoExpress(options =>
{
options.Username = "your-username";
options.Password = "your-password";
options.CustomerId = "1234567";
options.ResponsibleStation = "FRA";
})
.AddGoExpressShipping()
.AddGoExpressTracking();