GuiStracini.Mandae 7.1.220

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.12 or higher.

dotnet add package GuiStracini.Mandae --version 7.1.220                
NuGet\Install-Package GuiStracini.Mandae -Version 7.1.220                
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="7.1.220" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GuiStracini.Mandae --version 7.1.220                
#r "nuget: GuiStracini.Mandae, 7.1.220"                
#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 GuiStracini.Mandae as a Cake Addin
#addin nuget:?package=GuiStracini.Mandae&version=7.1.220

// Install GuiStracini.Mandae as a Cake Tool
#tool nuget:?package=GuiStracini.Mandae&version=7.1.220                

Mandaê SDK

The (unofficial) Mandaê API client for .NET projects.

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 center 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 web hooks 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 it's own API token!
var apiToken = "my API token";

//Call the constructor with the API token and de 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 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 a 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 (Generate by the Mandae or sent by the order collect request
var trackingId = "MyCompany-00001";
var tracking = client.GetTracking(trackingId);
//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 login 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 login in the V1 API.
  • Release v1.4.1 and higher also includes a 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 working


Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 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.866 107 3/3/2025
8.0.863 93 2/26/2025
8.0.860 84 2/26/2025
8.0.855 82 2/26/2025
8.0.847 85 2/22/2025
8.0.844 108 2/17/2025
8.0.841 93 2/3/2025
8.0.838 94 1/27/2025
8.0.835 88 1/20/2025
8.0.832 94 1/20/2025
8.0.827 86 1/20/2025
8.0.820 81 1/13/2025
8.0.817 73 1/13/2025
8.0.814 68 1/13/2025
8.0.809 67 1/13/2025
8.0.800 79 1/13/2025
8.0.789 100 1/6/2025
8.0.786 89 1/6/2025
8.0.783 88 1/6/2025
8.0.776 75 1/6/2025
8.0.767 93 12/31/2024
8.0.764 101 12/31/2024
8.0.757 120 12/30/2024
8.0.751 90 12/30/2024
8.0.735 89 12/23/2024
8.0.732 83 12/23/2024
8.0.729 89 12/23/2024
8.0.722 85 12/23/2024
8.0.713 98 12/9/2024
8.0.710 94 12/9/2024
8.0.705 95 12/2/2024
8.0.702 88 12/2/2024
8.0.697 96 12/2/2024
8.0.687 101 11/25/2024
8.0.682 97 11/25/2024
8.0.675 92 11/18/2024
8.0.672 92 10/28/2024
8.0.666 109 10/21/2024
8.0.663 146 10/14/2024
8.0.660 105 10/2/2024
8.0.657 97 10/2/2024
8.0.652 99 9/23/2024
8.0.649 106 9/23/2024
8.0.643 133 9/16/2024
8.0.640 130 9/10/2024
8.0.629 119 9/3/2024
8.0.623 101 8/29/2024
8.0.616 101 8/29/2024
8.0.613 110 8/29/2024
8.0.606 101 8/28/2024
8.0.599 110 8/27/2024
8.0.594 113 8/26/2024
8.0.591 106 8/26/2024
8.0.586 108 8/26/2024
8.0.581 103 8/26/2024
8.0.566 124 8/19/2024
8.0.563 118 8/12/2024
8.0.560 80 7/29/2024
8.0.557 109 7/22/2024
8.0.549 103 7/16/2024
8.0.546 109 7/16/2024
8.0.541 105 7/16/2024
8.0.532 109 7/16/2024
8.0.529 103 7/16/2024
8.0.501 130 6/19/2024
8.0.500 129 6/18/2024
8.0.498 135 6/18/2024
8.0.492 107 6/3/2024
8.0.489 109 6/3/2024
8.0.484 101 5/28/2024
8.0.481 112 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 99 5/15/2024
8.0.442 113 4/29/2024
8.0.439 99 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 138 4/15/2024
8.0.400 136 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 158 4/1/2024
8.0.361 176 3/25/2024
8.0.358 168 3/25/2024
8.0.353 189 3/18/2024
8.0.350 188 3/18/2024
8.0.345 236 3/11/2024
8.0.342 284 2/26/2024
8.0.339 273 2/26/2024
8.0.334 281 2/26/2024
8.0.327 269 2/26/2024
8.0.318 299 2/19/2024
8.0.310 295 2/19/2024
8.0.303 303 2/19/2024
8.0.294 312 2/14/2024
8.0.288 322 2/12/2024
8.0.285 346 2/5/2024
8.0.282 330 2/5/2024
8.0.277 354 1/30/2024
8.0.272 358 1/29/2024
8.0.269 351 1/29/2024
8.0.264 355 1/29/2024
8.0.254 390 1/22/2024
8.0.251 366 1/22/2024
8.0.246 360 1/22/2024
8.0.239 365 1/22/2024
8.0.230 417 1/16/2024
8.0.227 388 1/16/2024
8.0.222 390 1/15/2024
8.0.215 425 1/8/2024
8.0.212 417 1/8/2024
8.0.207 464 12/25/2023
8.0.204 450 12/25/2023
8.0.199 450 12/25/2023
8.0.192 450 12/25/2023
8.0.183 467 12/18/2023
8.0.178 456 12/18/2023
8.0.166 466 12/14/2023
8.0.157 478 12/12/2023
8.0.154 455 12/12/2023
8.0.149 466 12/12/2023
8.0.142 459 12/11/2023
8.0.137 460 12/11/2023
8.0.134 453 12/11/2023
8.0.114 491 12/8/2023
8.0.111 469 12/8/2023
8.0.108 490 12/8/2023
8.0.105 467 12/8/2023
8.0.96 466 12/8/2023
8.0.85 500 12/8/2023
8.0.59 1,690 11/14/2023
8.0.54 520 11/14/2023
8.0.49 503 11/13/2023
8.0.44 485 11/13/2023
8.0.37 523 11/9/2023
8.0.32 525 11/7/2023
8.0.27 504 11/6/2023
8.0.24 564 10/30/2023
8.0.21 525 10/30/2023
8.0.18 513 10/30/2023
8.0.13 562 10/22/2023
7.1.346 569 10/9/2023
7.1.343 543 10/9/2023
7.1.338 563 10/9/2023
7.1.335 567 10/9/2023
7.1.330 565 10/9/2023
7.1.323 572 10/7/2023
7.1.313 583 9/25/2023
7.1.308 587 9/24/2023
7.1.305 579 9/24/2023
7.1.298 586 9/23/2023
7.1.294 617 9/13/2023
7.1.287 623 9/13/2023
7.1.284 596 9/12/2023
7.1.281 595 9/12/2023
7.1.271 769 8/28/2023
7.1.263 833 8/14/2023
7.1.260 675 8/13/2023
7.1.227 672 8/13/2023
7.1.220 890 7/29/2023
7.1.218 747 7/29/2023
7.1.204 738 7/28/2023
7.1.200 763 7/25/2023
7.1.197 761 7/25/2023
7.1.190 814 7/19/2023
7.1.182 723 7/19/2023
7.1.157 961 6/27/2023
7.1.150 761 6/26/2023
7.1.145 849 6/19/2023
7.1.138 788 6/19/2023
7.1.135 755 6/19/2023
7.1.126 747 6/18/2023
7.1.107 928 6/6/2023
7.1.104 768 6/6/2023
7.1.95 764 6/6/2023
7.1.75 817 6/5/2023
7.1.17 1,184 5/4/2023
7.1.16 754 5/2/2023
7.1.15 830 4/28/2023
7.1.10 793 4/21/2023
7.1.8 810 4/21/2023
7.1.2 971 4/10/2023
7.0.101 795 4/8/2023
7.0.97 836 4/4/2023
7.0.92 931 4/3/2023
7.0.86 853 4/3/2023
7.0.64 906 3/26/2023
7.0.59 847 3/26/2023
7.0.43 863 3/22/2023
7.0.36 954 2/4/2023
7.0.31 1,020 1/24/2023
7.0.28 918 1/24/2023
7.0.25 927 1/24/2023
7.0.13 912 1/23/2023
7.0.8 879 1/23/2023
6.0.46 1,190 1/16/2023
6.0.43 944 1/16/2023
6.0.31 941 1/9/2023
6.0.30 957 12/25/2022
6.0.29 884 12/25/2022
6.0.17 1,867 4/24/2020
6.0.13 1,180 4/24/2020
6.0.12 1,182 4/18/2020
6.0.11 1,191 4/18/2020
6.0.10 1,194 4/18/2020
6.0.9 1,209 4/18/2020
6.0.8 1,263 9/24/2019
6.0.5 1,281 9/24/2019
5.0.37 1,314 6/18/2019
4.0.33 1,346 2/23/2019
4.0.30 1,289 2/23/2019
4.0.28 1,313 2/23/2019
4.0.27 1,381 2/14/2019
4.0.26 1,347 2/14/2019
4.0.25 1,365 2/14/2019
4.0.24 1,357 2/12/2019
4.0.23 1,350 1/29/2019
3.1.20 1,457 12/5/2018
3.1.17 1,542 9/8/2018
3.1.16 1,589 9/8/2018
3.1.15 1,477 9/8/2018
3.1.14 1,478 9/7/2018
3.1.13 1,480 9/7/2018
3.1.12 1,511 9/7/2018
3.1.11 1,551 8/23/2018
3.1.10 1,545 8/22/2018
3.1.8 1,503 8/16/2018
3.1.6 1,604 8/1/2018
3.1.5 1,513 8/1/2018
3.1.4 1,587 7/27/2018
3.1.3 1,553 7/27/2018
3.1.2 1,562 7/27/2018
3.1.1 1,538 7/26/2018
2.0.5 1,539 7/19/2018
2.0.4 1,763 5/24/2018
2.0.3 1,684 5/24/2018
2.0.1 1,742 5/9/2018
1.4.8 1,697 4/18/2018
1.4.7 1,658 4/18/2018
1.4.5 1,836 1/9/2018
1.4.1 1,793 1/9/2018
1.3.25 1,738 1/9/2018
1.3.19 1,783 12/20/2017
1.3.18 1,614 12/18/2017
1.3.17 1,735 12/15/2017
1.3.16 1,754 12/15/2017
1.3.14 1,752 12/15/2017
1.3.9 1,784 12/15/2017
1.3.8 1,762 12/15/2017
1.3.7 1,799 12/15/2017
1.3.5 1,767 12/15/2017
1.3.4 1,846 12/15/2017
1.3.3 1,794 12/15/2017
1.3.2 1,705 12/15/2017
1.3.1 1,669 11/30/2017
1.2.36 1,590 11/30/2017
1.2.34 1,637 11/29/2017
1.2.33 1,626 11/29/2017
1.2.31 1,612 11/29/2017
1.2.29 1,603 10/5/2017
1.2.28 1,610 10/4/2017
1.2.26 1,654 10/3/2017
1.2.25 1,622 10/3/2017
1.2.24 1,784 10/3/2017