GuiStracini.Mandae 8.0.866

There is a newer version of this package available.
See the version list below for details.
dotnet add package GuiStracini.Mandae --version 8.0.866
                    
NuGet\Install-Package GuiStracini.Mandae -Version 8.0.866
                    
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="GuiStracini.Mandae" Version="8.0.866" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GuiStracini.Mandae" Version="8.0.866" />
                    
Directory.Packages.props
<PackageReference Include="GuiStracini.Mandae" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GuiStracini.Mandae --version 8.0.866
                    
#r "nuget: GuiStracini.Mandae, 8.0.866"
                    
#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.
#addin nuget:?package=GuiStracini.Mandae&version=8.0.866
                    
Install GuiStracini.Mandae as a Cake Addin
#tool nuget:?package=GuiStracini.Mandae&version=8.0.866
                    
Install GuiStracini.Mandae as a Cake Tool

Mandaê SDK .NET

🇧🇷🚚 Mandaê API .NET client wrapper

Para a versão em português, por favor siga me.

GitHub license Time tracker GitHub issues by-label

Mandae logo

This is an unofficial client for the Mandaê API V2


CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality (main branch)

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities

DeepSource


Installation

Github Releases

GitHub last release Github All Releases

Download the latest zip file from the Release page.

Nuget package manager

Package Version Downloads
GuiStracini.Mandae GuiStracini.Mandae NuGet Version GuiStracini.Mandae NuGet Downloads

Features

This client supports the following operations/features of the API:

  1. Get rates for a delivery (postal code and package dimensions)
  2. Schedule a collect (register a collect in the customer distribution centre with one or more packages. Each package can have one or more items/SKU)
  3. Get tracking data of a shipment (Get all tracking data available from one package - tracking code is set by the customer or provided by webhook)
  4. WebHooks schema ready (The webhooks models, ready for implementation)
  5. Experimental Querying orders (API V1 - non-public API)
  6. Experimental Querying occurrences (API V1 - non-public API). Issue #1 GitHub labels
  7. Experimental Querying reverses (API V1 - non-public API). Issue #2 GitHub labels
  8. Experimental Request reverse (API V1 - non-public API). Issue #3 GitHub labels

Usage

Setup the MandaeClient

Initializes a new instance of MandaeClient class.

Example:

//Request your API token to ti@mandae.com.br 
//Each environment has its own API token!
var apiToken = "my API token";

//Call the constructor with the API token and the API environment (SANDBOX | PRODUCTION).
//var client = new MandaeClient(apiToken); //<= Environment.SANDBOX is the default environment.
var client = new MandaeClient(apiToken, Environment.PRODUCTION);

Get rates for a package/delivery

Get the rates (Rápido & Econômico) values and delivery time for a specified postal code and package dimensions.

Example:

//The MandaeClient
var client = new MandaeClient("my API token");

//The RatesModel
var delivery = new RatesModel {
    PostalCode = "22041080",
    ...
}
var rates = client.GetRates(delivery);
var fast = rates.ShippingServices.Single(s => s.Name == "Rápido");
var economic = rates.ShippingServices.Single(s => s.Name == "Econômico");
var option = ShippingService.ECONOMICO;
if(fast.Price < economic.Price)
    option = ShippingService.RAPIDO;

//The OrderModel (order collect request model)
var order = new OrderModel { ... };
order.Items = new [] {
    new NewItem 
    {
        ....
        ShippingService = option
    }
};
var order = client.RegisterOrderCollectRequest(order);

Schedule a collect request

Schedule a collect request (pickup in a distribution center/origin location).

Inform which type of Vehicle, when, which rate (Rapido | Economico) and the order items (a.k.a packages or clients orders).

Each package means an order/volume, that can have one or more items (SKUs).

Example:

//The MandaeClient
var client = new MandaeClient("my API token");

//The OrderModel (order collect request model)
var order = new OrderModel { ... };
order.Items = new [] {
    new NewItem 
    {
        ....
        ShippingService = option
    }
};

//Makes the request
var order = client.RegisterOrderCollectRequest(order);
**
//order.Id is the id for further use (maybe cancel the request ?)

Get tracking of a package

Example:

//The MandaeClient
var client = new MandaeClient("my API token");

//The tracking identifier (Generated by the Mandae or sent by the order collection request
var trackingId = "MyCompany-00001";
var tracking = client.GetTracking(tracking);
//tracking.CarrierName;
//tracking.CarrierCode;
//tracking.Events;

Querying orders (API V1 - Search) EXPERIMENTAL/NON-PUBLIC API

For the V1 you'll need to use the e-mail/password combination of the Mandaê panel to log in V1 API.

Example:

//The MandaeClient
var client = new MandaeClient("V2 API token");
client.ConfigureV1Authentication("myEmail@example.com", "password");
var trackingCode = "XYZ000001";//The tracking code of some order
var result = client.Search(SearchMethod.TRACKING_CODE, trackingCode);
if(result.Total == 1)
    Console.WriteLine(result.Orders.Single().SituationDescription);    

Release notes

  • Release v6.0.0 and higher DEPRECATED methods: Get Latest Order
  • Release v5.0.0 and higher DEPRECATED methods: Large Request, Cancel Request, Cancel Item Request
  • Release v3.0.0 and higher changes the V1 authentication method. Now use your e-mail/password of the Mandaê panel to log in to the V1 API.
  • Release v1.4.1 and higher also includes an experimental (non-public) V1 endpoint for search/querying orders (the same interface as available through the Mandaê administration panel).

Warning

The API V1 is not officially public, so there is no warranty that it will still be working


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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.872 134 8 days ago
8.0.869 133 22 days ago
8.0.866 117 a month ago
8.0.863 99 a month ago
8.0.860 91 a month ago
8.0.855 89 a month ago
8.0.847 92 2 months ago
8.0.844 113 2 months ago
8.0.841 98 2 months ago
8.0.838 100 2 months ago
8.0.835 93 3 months ago
8.0.832 99 3 months ago
8.0.827 90 3 months ago
8.0.820 84 3 months ago
8.0.817 76 3 months ago
8.0.814 71 3 months ago
8.0.809 70 3 months ago
8.0.800 82 3 months ago
8.0.789 103 3 months ago
8.0.786 92 3 months ago
8.0.783 91 3 months ago
8.0.776 78 3 months ago
8.0.767 97 3 months ago
8.0.764 104 3 months ago
8.0.757 123 3 months ago
8.0.751 93 3 months ago
8.0.735 92 4 months ago
8.0.732 86 4 months ago
8.0.729 91 4 months ago
8.0.722 87 4 months ago
8.0.713 100 4 months ago
8.0.710 96 4 months ago
8.0.705 97 4 months ago
8.0.702 90 4 months ago
8.0.697 98 4 months ago
8.0.687 103 4 months ago
8.0.682 99 4 months ago
8.0.675 93 5 months ago
8.0.672 93 5 months ago
8.0.666 110 6 months ago
8.0.663 148 6 months ago
8.0.660 107 6 months ago
8.0.657 99 6 months ago
8.0.652 101 7 months ago
8.0.649 107 7 months ago
8.0.643 134 7 months ago
8.0.640 132 7 months ago
8.0.629 120 7 months ago
8.0.623 102 7 months ago
8.0.616 103 7 months ago
8.0.613 111 7 months ago
8.0.606 103 7 months ago
8.0.599 112 7 months ago
8.0.594 115 7 months ago
8.0.591 107 7 months ago
8.0.586 110 7 months ago
8.0.581 105 7 months ago
8.0.566 125 8 months ago
8.0.563 119 8 months ago
8.0.560 81 8 months ago
8.0.557 111 9 months ago
8.0.549 104 9 months ago
8.0.546 110 9 months ago
8.0.541 106 9 months ago
8.0.532 110 9 months ago
8.0.529 104 9 months ago
8.0.501 132 10 months ago
8.0.500 131 10 months ago
8.0.498 137 10 months ago
8.0.492 107 6/3/2024
8.0.489 109 6/3/2024
8.0.484 101 5/28/2024
8.0.481 113 5/28/2024
8.0.476 134 5/28/2024
8.0.469 107 5/28/2024
8.0.460 94 5/20/2024
8.0.457 100 5/15/2024
8.0.442 114 4/29/2024
8.0.439 100 4/29/2024
8.0.434 107 4/29/2024
8.0.427 103 4/29/2024
8.0.418 120 4/22/2024
8.0.415 96 4/22/2024
8.0.410 113 4/22/2024
8.0.403 139 4/15/2024
8.0.400 137 4/15/2024
8.0.395 132 4/15/2024
8.0.388 120 4/15/2024
8.0.379 155 4/8/2024
8.0.376 138 4/8/2024
8.0.371 143 4/8/2024
8.0.364 159 4/1/2024
8.0.361 176 3/25/2024
8.0.358 168 3/25/2024
8.0.353 190 3/18/2024
8.0.350 189 3/18/2024
8.0.345 236 3/11/2024
8.0.342 286 2/26/2024
8.0.339 275 2/26/2024
8.0.334 282 2/26/2024
8.0.327 270 2/26/2024
8.0.318 300 2/19/2024
8.0.310 297 2/19/2024
8.0.303 304 2/19/2024
8.0.294 313 2/14/2024
8.0.288 323 2/12/2024
8.0.285 347 2/5/2024
8.0.282 331 2/5/2024
8.0.277 356 1/30/2024
8.0.272 360 1/29/2024
8.0.269 353 1/29/2024
8.0.264 356 1/29/2024
8.0.254 392 1/22/2024
8.0.251 367 1/22/2024
8.0.246 362 1/22/2024
8.0.239 367 1/22/2024
8.0.230 419 1/16/2024
8.0.227 390 1/16/2024
8.0.222 391 1/15/2024
8.0.215 426 1/8/2024
8.0.212 418 1/8/2024
8.0.207 465 12/25/2023
8.0.204 451 12/25/2023
8.0.199 451 12/25/2023
8.0.192 452 12/25/2023
8.0.183 468 12/18/2023
8.0.178 458 12/18/2023
8.0.166 468 12/14/2023
8.0.157 479 12/12/2023
8.0.154 456 12/12/2023
8.0.149 467 12/12/2023
8.0.142 460 12/11/2023
8.0.137 461 12/11/2023
8.0.134 454 12/11/2023
8.0.114 492 12/8/2023
8.0.111 471 12/8/2023
8.0.108 492 12/8/2023
8.0.105 468 12/8/2023
8.0.96 468 12/8/2023
8.0.85 502 12/8/2023
8.0.59 1,731 11/14/2023
8.0.54 522 11/14/2023
8.0.49 504 11/13/2023
8.0.44 487 11/13/2023
8.0.37 524 11/9/2023
8.0.32 527 11/7/2023
8.0.27 505 11/6/2023
8.0.24 565 10/30/2023
8.0.21 526 10/30/2023
8.0.18 515 10/30/2023
8.0.13 563 10/22/2023
7.1.346 571 10/9/2023
7.1.343 545 10/9/2023
7.1.338 565 10/9/2023
7.1.335 569 10/9/2023
7.1.330 566 10/9/2023
7.1.323 573 10/7/2023
7.1.313 585 9/25/2023
7.1.308 588 9/24/2023
7.1.305 580 9/24/2023
7.1.298 587 9/23/2023
7.1.294 619 9/13/2023
7.1.287 624 9/13/2023
7.1.284 597 9/12/2023
7.1.281 596 9/12/2023
7.1.271 771 8/28/2023
7.1.263 834 8/14/2023
7.1.260 677 8/13/2023
7.1.227 673 8/13/2023
7.1.220 892 7/29/2023
7.1.218 749 7/29/2023
7.1.204 739 7/28/2023
7.1.200 764 7/25/2023
7.1.197 763 7/25/2023
7.1.190 815 7/19/2023
7.1.182 724 7/19/2023
7.1.157 962 6/27/2023
7.1.150 763 6/26/2023
7.1.145 851 6/19/2023
7.1.138 789 6/19/2023
7.1.135 757 6/19/2023
7.1.126 749 6/18/2023
7.1.107 930 6/6/2023
7.1.104 771 6/6/2023
7.1.95 767 6/6/2023
7.1.75 819 6/5/2023
7.1.17 1,186 5/4/2023
7.1.16 756 5/2/2023
7.1.15 840 4/28/2023
7.1.10 794 4/21/2023
7.1.8 811 4/21/2023
7.1.2 972 4/10/2023
7.0.101 796 4/8/2023
7.0.97 837 4/4/2023
7.0.92 933 4/3/2023
7.0.86 854 4/3/2023
7.0.64 908 3/26/2023
7.0.59 849 3/26/2023
7.0.43 865 3/22/2023
7.0.36 957 2/4/2023
7.0.31 1,023 1/24/2023
7.0.28 920 1/24/2023
7.0.25 929 1/24/2023
7.0.13 915 1/23/2023
7.0.8 882 1/23/2023
6.0.46 1,193 1/16/2023
6.0.43 947 1/16/2023
6.0.31 943 1/9/2023
6.0.30 960 12/25/2022
6.0.29 887 12/25/2022
6.0.17 1,874 4/24/2020
6.0.13 1,187 4/24/2020
6.0.12 1,189 4/18/2020
6.0.11 1,198 4/18/2020
6.0.10 1,201 4/18/2020
6.0.9 1,216 4/18/2020
6.0.8 1,270 9/24/2019
6.0.5 1,288 9/24/2019
5.0.37 1,321 6/18/2019
4.0.33 1,353 2/23/2019
4.0.30 1,296 2/23/2019
4.0.28 1,320 2/23/2019
4.0.27 1,388 2/14/2019
4.0.26 1,354 2/14/2019
4.0.25 1,372 2/14/2019
4.0.24 1,364 2/12/2019
4.0.23 1,358 1/29/2019
3.1.20 1,465 12/5/2018
3.1.17 1,552 9/8/2018
3.1.16 1,609 9/8/2018
3.1.15 1,487 9/8/2018
3.1.14 1,488 9/7/2018
3.1.13 1,490 9/7/2018
3.1.12 1,521 9/7/2018
3.1.11 1,562 8/23/2018
3.1.10 1,556 8/22/2018
3.1.8 1,514 8/16/2018
3.1.6 1,622 8/1/2018
3.1.5 1,531 8/1/2018
3.1.4 1,605 7/27/2018
3.1.3 1,571 7/27/2018
3.1.2 1,580 7/27/2018
3.1.1 1,556 7/26/2018
2.0.5 1,557 7/19/2018
2.0.4 1,791 5/24/2018
2.0.3 1,712 5/24/2018
2.0.1 1,770 5/9/2018
1.4.8 1,726 4/18/2018
1.4.7 1,686 4/18/2018
1.4.5 1,862 1/9/2018
1.4.1 1,819 1/9/2018
1.3.25 1,764 1/9/2018
1.3.19 1,809 12/20/2017
1.3.18 1,631 12/18/2017
1.3.17 1,761 12/15/2017
1.3.16 1,780 12/15/2017
1.3.14 1,778 12/15/2017
1.3.9 1,810 12/15/2017
1.3.8 1,788 12/15/2017
1.3.7 1,825 12/15/2017
1.3.5 1,793 12/15/2017
1.3.4 1,872 12/15/2017
1.3.3 1,820 12/15/2017
1.3.2 1,731 12/15/2017
1.3.1 1,686 11/30/2017
1.2.36 1,607 11/30/2017
1.2.34 1,654 11/29/2017
1.2.33 1,643 11/29/2017
1.2.31 1,629 11/29/2017
1.2.29 1,620 10/5/2017
1.2.28 1,627 10/4/2017
1.2.26 1,671 10/3/2017
1.2.25 1,639 10/3/2017
1.2.24 1,810 10/3/2017

Upgrade to .NET Standard 2.0 and 2.1