GuiStracini.Mandae 1.2.24

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

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

Mandaê API

The (unnoficial) Mandaê API client

Build status GuiStracini.Mandae NuGet Version GuiStracini.Mandae NuGet Downloads Github All Releases

This is an unnoficial client for the Mandaê API V2. (https://dev.mandae.com.br/api/index.html)


NuGet package: https://www.nuget.org/packages/GuiStracini.Mandae

Install-Package GuiStracini.Mandae

Features

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

  1. Register customer (collect location - distribution center)
  2. Get available vehicles for a collect location (pickup packages from collect location based on postal code)
  3. Get rates for a delivery (postal code and package dimensions)
  4. Get the available hours to pickup order(s) in a selected date
  5. Schedule a collect (register a collect in the customer distribution center with one or more packages. Each package can have one or more items/skus)
  6. Cancel the whole collect schedule (Cancel a previous collect scheduler)
  7. Cancel a schedule item (Cancel a item/package from a collect order)
  8. Get tracking data of a shipment (Get all tracking data available from one package - tracking code is supplied via WebHook)
  9. WebHooks schema ready (The web hooks models/schemas)

All operations supports sync and async!


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);

Register a customer (pickup/collect location)

How to register a customer (pickup/collect location).

Example:

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

//The CustomerModel
var model = new CustomerModel 
{
    Document = "00000000000191", //CPF or CNPJ
    Email = "example@example.com",
    FullName = "Guilherme Branco Stracini",
    Phone = new Phone 
    {
        AreaCode = "11",
        Number = "33445566"
    },
    Store = new Store 
    {
        Name = "Sample store",
        Url = "https://example.com"
    }
};

//The response id should be stored anywhere for future use (where the packages will be collected). This id is used in the RegisterOrder method
var customer = client.RegisterCustomer(model);   

Get available vehicles

Get all available vehicles for a pickup in a source postal code (distribution center / origin location).

Example:

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

var vehicles = client.GetVehicles("03137020");
if(vehicles.Any(v=>v.CAR))
{
    //Car is available for the pickup in this postal code!
}

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);

Get available hours for pickup

Gets the available hours for pickup/collect packages in the distribuiton center for a specified date.

Example:

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

//Check the available hours for tomorrow
var date= DateTime.Now.AddDays(1);

//The list os avaiable hours for pickup tomorrow
var avaiableHours = client.GetAvaiableHours(date);

Schedule a collect request

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

Inform which type of Vehicle (GetVehicles), when (GetAvailableHours), 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: [TODO: Pending test result]

Get the latest order collect request status

Gets the last order collect request for a customer (by customerId).

Example:

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

//The customerId 
var customerId = "sampleCustomerId";
var status = client.GetLatestOrderCollectStatus(customerId);

//Tracking url for the order collect request
var url = status.Url;

Cancel a schedule collect request

Example: [TODO | Pending test result]

Cancel a schedule item (package) collect request

Example: [TODO | Pending test result]

Get tracking of a package

Example: [TODO | Pending test result]

Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  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

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.501 89 6/19/2024
8.0.500 83 6/18/2024
8.0.498 82 6/18/2024
8.0.492 73 6/3/2024
8.0.489 69 6/3/2024
8.0.484 63 5/28/2024
8.0.481 72 5/28/2024
8.0.476 82 5/28/2024
8.0.469 71 5/28/2024
8.0.460 54 5/20/2024
8.0.457 53 5/15/2024
8.0.442 76 4/29/2024
8.0.439 69 4/29/2024
8.0.434 66 4/29/2024
8.0.427 69 4/29/2024
8.0.418 82 4/22/2024
8.0.415 59 4/22/2024
8.0.410 78 4/22/2024
8.0.403 104 4/15/2024
8.0.400 96 4/15/2024
8.0.395 96 4/15/2024
8.0.388 88 4/15/2024
8.0.379 114 4/8/2024
8.0.376 101 4/8/2024
8.0.371 109 4/8/2024
8.0.364 121 4/1/2024
8.0.361 146 3/25/2024
8.0.358 133 3/25/2024
8.0.353 159 3/18/2024
8.0.350 158 3/18/2024
8.0.345 191 3/11/2024
8.0.342 247 2/26/2024
8.0.339 238 2/26/2024
8.0.334 233 2/26/2024
8.0.327 237 2/26/2024
8.0.318 262 2/19/2024
8.0.310 254 2/19/2024
8.0.303 262 2/19/2024
8.0.294 271 2/14/2024
8.0.288 281 2/12/2024
8.0.285 310 2/5/2024
8.0.282 297 2/5/2024
8.0.277 317 1/30/2024
8.0.272 324 1/29/2024
8.0.269 314 1/29/2024
8.0.264 314 1/29/2024
8.0.254 342 1/22/2024
8.0.251 326 1/22/2024
8.0.246 326 1/22/2024
8.0.239 334 1/22/2024
8.0.230 364 1/16/2024
8.0.227 355 1/16/2024
8.0.222 359 1/15/2024
8.0.215 387 1/8/2024
8.0.212 380 1/8/2024
8.0.207 435 12/25/2023
8.0.204 417 12/25/2023
8.0.199 416 12/25/2023
8.0.192 421 12/25/2023
8.0.183 436 12/18/2023
8.0.178 426 12/18/2023
8.0.166 426 12/14/2023
8.0.157 431 12/12/2023
8.0.154 427 12/12/2023
8.0.149 430 12/12/2023
8.0.142 427 12/11/2023
8.0.137 431 12/11/2023
8.0.134 423 12/11/2023
8.0.114 453 12/8/2023
8.0.111 439 12/8/2023
8.0.108 458 12/8/2023
8.0.105 436 12/8/2023
8.0.96 432 12/8/2023
8.0.85 464 12/8/2023
8.0.59 886 11/14/2023
8.0.54 470 11/14/2023
8.0.49 449 11/13/2023
8.0.44 443 11/13/2023
8.0.37 489 11/9/2023
8.0.32 486 11/7/2023
8.0.27 467 11/6/2023
8.0.24 530 10/30/2023
8.0.21 482 10/30/2023
8.0.18 479 10/30/2023
8.0.13 527 10/22/2023
7.1.346 529 10/9/2023
7.1.343 507 10/9/2023
7.1.338 529 10/9/2023
7.1.335 516 10/9/2023
7.1.330 524 10/9/2023
7.1.323 529 10/7/2023
7.1.313 547 9/25/2023
7.1.308 551 9/24/2023
7.1.305 545 9/24/2023
7.1.298 553 9/23/2023
7.1.294 579 9/13/2023
7.1.287 591 9/13/2023
7.1.284 561 9/12/2023
7.1.281 562 9/12/2023
7.1.271 731 8/28/2023
7.1.263 800 8/14/2023
7.1.260 641 8/13/2023
7.1.227 637 8/13/2023
7.1.220 854 7/29/2023
7.1.218 712 7/29/2023
7.1.204 703 7/28/2023
7.1.200 723 7/25/2023
7.1.197 720 7/25/2023
7.1.190 777 7/19/2023
7.1.182 687 7/19/2023
7.1.157 925 6/27/2023
7.1.150 728 6/26/2023
7.1.145 790 6/19/2023
7.1.138 747 6/19/2023
7.1.135 718 6/19/2023
7.1.126 712 6/18/2023
7.1.107 893 6/6/2023
7.1.104 716 6/6/2023
7.1.95 726 6/6/2023
7.1.75 782 6/5/2023
7.1.17 1,144 5/4/2023
7.1.16 712 5/2/2023
7.1.15 791 4/28/2023
7.1.10 755 4/21/2023
7.1.8 768 4/21/2023
7.1.2 927 4/10/2023
7.0.101 755 4/8/2023
7.0.97 796 4/4/2023
7.0.92 891 4/3/2023
7.0.86 814 4/3/2023
7.0.64 871 3/26/2023
7.0.59 807 3/26/2023
7.0.43 821 3/22/2023
7.0.36 918 2/4/2023
7.0.31 982 1/24/2023
7.0.28 876 1/24/2023
7.0.25 883 1/24/2023
7.0.13 873 1/23/2023
7.0.8 846 1/23/2023
6.0.46 1,149 1/16/2023
6.0.43 894 1/16/2023
6.0.31 902 1/9/2023
6.0.30 921 12/25/2022
6.0.29 845 12/25/2022
6.0.17 1,821 4/24/2020
6.0.13 1,127 4/24/2020
6.0.12 1,130 4/18/2020
6.0.11 1,126 4/18/2020
6.0.10 1,145 4/18/2020
6.0.9 1,153 4/18/2020
6.0.8 1,215 9/24/2019
6.0.5 1,223 9/24/2019
5.0.37 1,259 6/18/2019
4.0.33 1,286 2/23/2019
4.0.30 1,227 2/23/2019
4.0.28 1,262 2/23/2019
4.0.27 1,330 2/14/2019
4.0.26 1,298 2/14/2019
4.0.25 1,308 2/14/2019
4.0.24 1,299 2/12/2019
4.0.23 1,300 1/29/2019
3.1.20 1,400 12/5/2018
3.1.17 1,461 9/8/2018
3.1.16 1,518 9/8/2018
3.1.15 1,408 9/8/2018
3.1.14 1,409 9/7/2018
3.1.13 1,406 9/7/2018
3.1.12 1,447 9/7/2018
3.1.11 1,485 8/23/2018
3.1.10 1,463 8/22/2018
3.1.8 1,432 8/16/2018
3.1.6 1,524 8/1/2018
3.1.5 1,432 8/1/2018
3.1.4 1,506 7/27/2018
3.1.3 1,475 7/27/2018
3.1.2 1,484 7/27/2018
3.1.1 1,454 7/26/2018
2.0.5 1,456 7/19/2018
2.0.4 1,651 5/24/2018
2.0.3 1,576 5/24/2018
2.0.1 1,626 5/9/2018
1.4.8 1,584 4/18/2018
1.4.7 1,542 4/18/2018
1.4.5 1,706 1/9/2018
1.4.1 1,670 1/9/2018
1.3.25 1,609 1/9/2018
1.3.19 1,661 12/20/2017
1.3.18 1,523 12/18/2017
1.3.17 1,610 12/15/2017
1.3.16 1,624 12/15/2017
1.3.14 1,633 12/15/2017
1.3.9 1,665 12/15/2017
1.3.8 1,641 12/15/2017
1.3.7 1,661 12/15/2017
1.3.5 1,646 12/15/2017
1.3.4 1,718 12/15/2017
1.3.3 1,672 12/15/2017
1.3.2 1,587 12/15/2017
1.3.1 1,563 11/30/2017
1.2.36 1,490 11/30/2017
1.2.34 1,550 11/29/2017
1.2.33 1,539 11/29/2017
1.2.31 1,523 11/29/2017
1.2.29 1,514 10/5/2017
1.2.28 1,523 10/4/2017
1.2.26 1,564 10/3/2017
1.2.25 1,534 10/3/2017
1.2.24 1,652 10/3/2017