An open API service indexing awesome lists of open source software.

https://github.com/mikaeldui/wolt-dotnet-client

A .NET client for Wolt.
https://github.com/mikaeldui/wolt-dotnet-client

Last synced: about 2 months ago
JSON representation

A .NET client for Wolt.

Awesome Lists containing this project

README

        

# Wolt .NET Client (independent)
A .NET client for Wolt (DoorDash).

- [Documentation](https://developer.wolt.com/)

- [ ] Partner API
- [ ] Drive API

# Example

Of Partner API usage:

```c-sharp
using WoltPartnerClient woltPartnerClient = new("mySecret");
var orders = await woltPartnerClient.Orders.GetOrdersAsync();
```

Of Drive API usage:

```c-sharp
using WoltDriveClient woltDriveClient = new("mySecret");
var deliveries = await woltDriveClient.GetDeliveries("myVenue");
```